// JavaScript Document
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() + (540*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 id="face2"<br/>></span><span id="face1"></span>')
runningClock1();
runningClock();
}


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 = '<span >&nbsp;India     </span>&nbsp;&nbsp;&nbsp;' + time + '';
	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 = '<span >&nbsp;Japan</span> &nbsp;' + time + '<br/>';
	setTimeout('runningClock1();',1000);
	
	
}



