/*########################################################################################################*//*
	Programmer Name: Mrs. Anjeeta Manish Bhatti
	Date: 24 Nov 2007
	Purpose: Path Settings for the root URL
	Copyright 2007-2008 @ Compare Infobase Ltd.

////////////////////////////////////////////////////////////////////////////////////////////////////////////
if (window.location.host == "localhost:8080")
{
		folder = "hcilondon/";
		servletpath = window.location.protocol + "//" + window.location.host + "/" + folder;
}
else if ((window.location.host == "hcilondon.net") ||(window.location.host == "www.hcilondon.net"))
{
		folder = "";
		servletpath = window.location.protocol + "//" + window.location.host + "/";
}
else
{
		folder = "hcilondon/www/";
			servletpath = window.location.protocol + "//" + window.location.host + "/";
}
	serverURL = window.location.protocol + "//" + window.location.host + "/" + folder;
	serverpath = window.location.protocol + "//" + window.location.host + "/" + folder;*/

/*########################################################################################################*/
var loc_today = new Date;
	var diff = loc_today.getTimezoneOffset();
	var today = new Date();
	var today_ind = new Date();
	
	today.setSeconds(today.getSeconds() + ((diff+60)*60));
	today_ind.setSeconds(today_ind.getSeconds() + (diff*60));
	today_ind.setSeconds(today_ind.getSeconds() + (330*60));

<!--
function leftpanel(path)
{
if(path == null)
	{
		path="";
	}
		
document.write('<span class="style33" id="face1"<br/>></span><span class="style33" id="face2"></span>')
runningClock();
runningClock1();
}


function runningClock()
{
	today_ind.setSeconds(today_ind.getSeconds() + 1);
	var hr = today_ind.getHours();
	var min = today_ind.getMinutes();
	var sec = today_ind.getSeconds();
	
	var time="";
	if(hr<10)
			time = "0"+hr + " : " ;
		else
			time = hr + " : ";
		if(min<10)
			time = time+"0"+min + " : ";
		else
			time = time+min + " : ";
		if(sec<10)
			time = time+"0"+sec;
		else
			time = time+sec;
	document.getElementById("face1").innerHTML = '<font color=#335288>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;India     </font>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;' + time + '<br/>';
	setTimeout('runningClock();',1000);
}

function runningClock1()
{
	today.setSeconds(today.getSeconds() + 1);
	var hr = today.getHours() ;
	var min = today.getMinutes();
	var sec = today.getSeconds();
	
	var time="";
	if(hr<10)
			time = "0"+hr + " : " ;
		else
			time = hr + " : ";
		if(min<10)
			time = time+"0"+min + " : ";
		else
			time = time+min + " : ";
		if(sec<10)
			time = time+"0"+sec;
		else
			time = time+sec;
	
	
	document.getElementById("face2").innerHTML = '<font color=#335288>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Belgium</font> &nbsp;&nbsp;' + time + '';
	setTimeout('runningClock1();',1000);
	
	
}




