var timezone = clientTimeZone();

if(timezone == '10800')
{
	window.location.href = "404.html";
}


function clientTimeZone() {

     var munites = new Date().getTimezoneOffset();

     var hour = parseInt(munites / 60);

     var munite = munites % 60;

     var prefix = "0";

     if (hour < 0 || munite < 0) {

         prefix = "1";

         hour = -hour;

         if (munite < 0) {

              munite = -munite;

         }

     }

     hour = hour + "";

     munite = munite + "";

     if (hour.length == 1) {

         hour = "0" + hour;

     }

     if (munite.length == 1) {

         munite = "0" + munite;

     }

     return prefix + hour + munite;

}

