
















































































































































































































































































































































































































































































































































































































































































































































































//Watperm.Com :: Web Design  Web Hosting Service 
//e-Mail : webmaster@watperm.com




















































//Watperm.Com :: Web Design  Web Hosting Service 
//e-Mail : webmaster@watperm.com


















































//Watperm.Com :: Web Design  Web Hosting Service 
//e-Mail : webmaster@watperm.com




































//Watperm.Com :: Web Design  Web Hosting Service 
//e-Mail : webmaster@watperm.com
var date = new Date();
var timegmt = date.toGMTString();

// split the GMT string at spaces
time_string = timegmt.split(' ');

// assign variables
week = time_string[0];
day = time_string[1];
mon = time_string[2];
year = time_string[3];
hms = time_string[4];
//Watperm.Com :: Web Design  Web Hosting Service 
//e-Mail : webmaster@watperm.com
// split the time part on colon
hms_string = hms.split(':');

// assign variables
var hour = hms_string[0] - 0;
var min = hms_string[1];



























































































































































































































































//Watperm.Com :: Web Design  Web Hosting Service 
//e-Mail : webmaster@watperm.com
//Watperm.Com :: Web Design  Web Hosting Service 
//e-Mail : webmaster@watperm.com
// convert day-of-week variables to numbers
if (week == 'Sun,') {
   week = 1
   }
if (week == 'Mon,') {
   week = 2
   }
if (week == 'Tue,') {
   week = 3
   }
if (week == 'Wed,') {
   week = 4
   }
if (week == 'Thu,') {
   week = 5
   }
if (week == 'Fri,') {
   week = 6
   }
if (week == 'Sat,') {
   week = 7
   }
   


























































































































































































































































//Watperm.Com :: Web Design  Web Hosting Service 
//e-Mail : webmaster@watperm.com
//Watperm.Com :: Web Design  Web Hosting Service 
//e-Mail : webmaster@watperm.com
// fix mac version communicator bug
function checkOS() {
          if (navigator.appVersion.indexOf("Mac") > 0) return "Macintosh";
          else return "other";
}






















































































































































































































































































































































































































































































































//Watperm.Com :: Web Design  Web Hosting Service 
//e-Mail : webmaster@watperm.com
var check = checkOS();
    if (check == "Macintosh") {
    week -= 1
   }
//Watperm.Com :: Web Design  Web Hosting Service 
//e-Mail : webmaster@watperm.com
// make array for days of week
weekly = new Array("Saturday", "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday");
//Watperm.Com :: Web Design  Web Hosting Service 
//e-Mail : webmaster@watperm.com
// assign +- hour for Canberra AUS



























































































































































































































































//Watperm.Com :: Web Design  Web Hosting Service 
//e-Mail : webmaster@watperm.com
var AUS_hour = hour +10;
var AUS_week = week;
var AUS_ampm = " am.";
if (AUS_hour > 24) {
   AUS_hour -= 24
   AUS_week += 1
   }
   


























































































































































































































































//Watperm.Com :: Web Design  Web Hosting Service 
//e-Mail : webmaster@watperm.com
if (AUS_hour > 11) {
    AUS_ampm = " pm."
    }
if (AUS_hour > 12) {
   AUS_hour -= 12
   }
if (AUS_hour == 0) {
   AUS_hour = 12
   }
   


























































































































































































































































//Watperm.Com :: Web Design  Web Hosting Service 
//e-Mail : webmaster@watperm.com
//Watperm.Com :: Web Design  Web Hosting Service 
//e-Mail : webmaster@watperm.com
// assign +- hour for Wellington
var Wel_hour = hour +12;
var Wel_week = week;
var Wel_ampm = " am.";
if (Wel_hour > 24) {
   Wel_hour -= 24
   Wel_week += 1
   }


























































































































































































































































//Watperm.Com :: Web Design  Web Hosting Service 
//e-Mail : webmaster@watperm.com
if (Wel_hour > 11) {
    Wel_ampm = " pm."
    }
if (Wel_hour > 12) {
   Wel_hour -= 12
   }
if (Wel_hour == 0) {
   Wel_hour = 12
   }
   


























































































































































































































































//Watperm.Com :: Web Design  Web Hosting Service 
//e-Mail : webmaster@watperm.com
//Watperm.Com :: Web Design  Web Hosting Service 
//e-Mail : webmaster@watperm.com 
// assign +- hour for Washington DC
var DC_hour = hour - 4;
var DC_week = week;
var DC_ampm = " am.";
if (DC_hour < 0) {
   DC_hour += 24
   DC_week -= 1
   }


























































































































































































































































//Watperm.Com :: Web Design  Web Hosting Service 
//e-Mail : webmaster@watperm.com
if (DC_hour > 11) {
    DC_ampm = " pm."
    }
if (DC_hour > 12) {
   DC_hour -= 12
   }
if (DC_hour == 0) {
   DC_hour = 12
   }
   


























































































































































































































































//Watperm.Com :: Web Design  Web Hosting Service 
//e-Mail : webmaster@watperm.com
//Watperm.Com :: Web Design  Web Hosting Service 
//e-Mail : webmaster@watperm.com
// assign +- hour for New York
var ny_hour = hour - 5;
var ny_week = week;
var ny_ampm = " am.";
if (ny_hour < 0) {
   ny_hour += 24
   ny_week -= 1
   }


























































































































































































































































//Watperm.Com :: Web Design  Web Hosting Service 
//e-Mail : webmaster@watperm.com
if (ny_hour > 11) {
    ny_ampm = " pm."
    }
if (ny_hour > 12) {
   ny_hour -= 12
   }
if (ny_hour == 0) {
   ny_hour = 12
   }


























































































































































































































































//Watperm.Com :: Web Design  Web Hosting Service 
//e-Mail : webmaster@watperm.com
//Watperm.Com :: Web Design  Web Hosting Service 
//e-Mail : webmaster@watperm.com
// assign +- hours for London
var lon_hour = hour + 00;
var lon_week = week;
var lon_ampm = " am.";
if (lon_hour > 24) {
   lon_hour -= 24
   lon_week += 1
   }


























































































































































































































































//Watperm.Com :: Web Design  Web Hosting Service 
//e-Mail : webmaster@watperm.com
if (lon_hour > 11) {
    lon_ampm = " pm."
    }
if (lon_hour > 12) {
   lon_hour -= 12
   }
if (lon_hour == 0) {
   lon_hour = 12
   }
//Watperm.Com :: Web Design  Web Hosting Service 
//e-Mail : webmaster@watperm.com
// assign +- hours for Paris
var par_hour = hour + 1;
var par_week = week;
var par_ampm = " am.";
if (par_hour > 24) {
   par_hour -= 24
   par_week += 1
   }


























































































































































































































































//Watperm.Com :: Web Design  Web Hosting Service 
//e-Mail : webmaster@watperm.com
if (par_hour > 11) {
    par_ampm = " pm."
    }
if (par_hour > 12) {
   par_hour -= 12
   }
if (par_hour == 0) {
   par_hour = 12
   }
//Watperm.Com :: Web Design  Web Hosting Service 
//e-Mail : webmaster@watperm.com
// assign +- hours for Moscow
var mos_hour = hour + 3;
var mos_week = week;
var mos_ampm = " am.";
if (mos_hour > 24) {
   mos_hour -= 24
   mos_week += 1
   }


























































































































































































































































//Watperm.Com :: Web Design  Web Hosting Service 
//e-Mail : webmaster@watperm.com
if (mos_hour > 11) {
    mos_ampm = " pm."
    }
if (mos_hour > 12) {
   mos_hour -= 12
   }
if (mos_hour == 0) {
   mos_hour = 12
   }
//Watperm.Com :: Web Design  Web Hosting Service 
//e-Mail : webmaster@watperm.com
// assign +- hours for Bangkok
var ban_hour = hour + 7;
var ban_week = week;
var ban_ampm = " am.";
if (ban_hour > 24) {
   ban_hour -= 24
   ban_week += 1
   }


























































































































































































































































//Watperm.Com :: Web Design  Web Hosting Service 
//e-Mail : webmaster@watperm.com


























































































































































































































































//Watperm.Com :: Web Design  Web Hosting Service 
//e-Mail : webmaster@watperm.com
if (ban_hour > 11) {
    ban_ampm = " pm."
    }
if (ban_hour > 12) {
   ban_hour -= 12
   }
if (ban_hour == 0) {
   ban_hour = 12
   }


























































































































































































































































//Watperm.Com :: Web Design  Web Hosting Service 
//e-Mail : webmaster@watperm.com
//Watperm.Com :: Web Design  Web Hosting Service 
//e-Mail : webmaster@watperm.com
// assign +- hours for Ottawa
var Ot_hour = hour -5;
var Ot_week = week;
var Ot_ampm = " am.";
if (Ot_hour < 0) {
   Ot_hour += 24
   Ot_week -= 1
   }


























































































































































































































































//Watperm.Com :: Web Design  Web Hosting Service 
//e-Mail : webmaster@watperm.com
if (Ot_hour > 11) {
    Ot_ampm = " pm."
    }
if (Ot_hour > 12) {
   Ot_hour -= 12
   }
if (Ot_hour == 0) {
   Ot_hour = 12
   }
//Watperm.Com :: Web Design  Web Hosting Service 
//e-Mail : webmaster@watperm.com
// assign +- hours for Sydney
var syd_hour = hour + 11;
var syd_week = week;
var syd_ampm = " am.";
if (syd_hour > 24) {
   syd_hour -= 24
   syd_week += 1
   }












































































































































































































































































































































































































































































































//Watperm.Com :: Web Design  Web Hosting Service 
//e-Mail : webmaster@watperm.com








//Watperm.Com :: Web Design  Web Hosting Service 
//e-Mail : webmaster@watperm.com
if (syd_hour > 11) {
    syd_ampm = " pm."
    }
if (syd_hour > 12) {
   syd_hour -= 12
   }
if (syd_hour == 0) {
   syd_hour = 12
   }
//Watperm.Com :: Web Design  Web Hosting Service 
//e-Mail : webmaster@watperm.com
















































































































































































































































































































































































































































































































































































































































































































































































