var myday="";
var myhours="";
var myminutes
var mymonth="";
var myweekday="";
var myyear="";

newdate = new Date();
mydate = new Date();

newtime=newdate.getTime();

var zone = 12; //For Tuvalu off UTC
tv_time = newtime+(zone*60*60*1000);

mydate.setTime(tv_time);
myday = mydate.getUTCDay();
mymonth = mydate.getUTCMonth();
myweekday= mydate.getUTCDate();
myyear= mydate.getUTCFullYear();
myhours = mydate.getUTCHours();
myminutes = mydate.getUTCMinutes();

if (myhours >= 12) {
myhours = (myhours == 12) ? 12 : myhours - 12; mm = " PM";
}
else {
myhours = (myhours == 0) ? 12 : myhours; mm = " AM";
}

if (myminutes < 10){
mytime = ":0" + myminutes;
}
else {
mytime = ":" + myminutes;
};
arday = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
armonth = new Array("January ","February ","March ","April ","May ","June ","July ","August ","September ", "October ","November ","December ")
ardate = new Array("0th","1st","2nd","3rd","4th","5th","6th","7th","8th","9th","10th","11th","12th","13th","14th","15th","16th","17th","18th","19th","20th","21st","22nd","23rd","24th","25th","26th","27th","28th","29th","30th","31st");
// rename locale as needed.

//var time = ("In Tuvalu, it is " + myhours + mytime + mm + ", " + arday[myday] +", " + armonth[mymonth] +" "+ardate[myweekday] + ", " + myyear+".");
//document.write(time);
//-->
