<!--
//Get the timezone Offset

var g_date=new Date();
if (g_date)
	g_off=(g_date.getTimezoneOffset());
	if ((g_off > 29)||(g_off < -29))
	{
		g_off=(g_off/60)
	}
	g_off=(0 - g_off);
	document.cookie = "offset=" + escape (g_off) + "; path=/;"
//-->