if(querySt('refresh') == 0 || querySt('refresh') == undefined)
{
	now = new Date();
	var offset  = now.getTimezoneOffset()/60
	var hour  = now.getHours()
	var day   = now.getDate()
	var month = now.getMonth()+1
	var year  = now.getFullYear()
	
	if(document.location.search != '')
	{
		document.location += '&refresh=1&offset='+offset+'&hour='+hour+'&day='+day+'&month='+month+'&year='+year;
	}
	else
	{
		document.location += '?refresh=1&offset='+offset+'&hour='+hour+'&day='+day+'&month='+month+'&year='+year;
	}
}

