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));
	today.setSeconds(today.getSeconds() + (240*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="menu_heading" id="face1" style="color: rgb(255, 255, 255);"></span><span class="menu_heading" id="face2" style="color: rgb(255, 255, 255);"></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=#FFFFFF>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;India: </font>&nbsp;&nbsp;&nbsp;&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=#FFFFFF>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Mauritius:</font> &nbsp;&nbsp;&nbsp;' + time + '';
	setTimeout('runningClock1();',1000);
	
	
}




