
<!-- Begin

var day="";
var month="";
var myweekday="";
var year="";
newdate = new Date();
mydate = new Date();
dston =  new Date('November 5, 2008 2:59:59');  //Last Sunday in October
dstoff = new Date('April 5, 2009 12:00:00'); //First Sunday in April
var myzone = newdate.getTimezoneOffset();
newtime=newdate.getTime();

var zone = -10;  // references your time zone

if (newdate > dston && newdate < dstoff ) {
zonea = zone - 1 ;
dst = "  Pacific Daylight Savings Time";
}
else {
zonea = zone ; dst = "  Pacific Standard Time";
}
var newzone = (zonea*60*60*1000);
newtimea = newtime+(myzone*60*1000)-newzone;
mydate.setTime(newtimea);
myday = mydate.getDay();
mymonth = mydate.getMonth();
myweekday= mydate.getDate();
myyear= mydate.getYear();
year = myyear;

if (year < 2000)    // Y2K Fix, Isaac Powell
year = year + 1900; // http://onyx.idbsu.edu/~ipowell
myhours = mydate.getHours();
if (myhours >= 12) {
myhours = (myhours == 12) ? 12 : myhours - 12; mm = " PM";
}
else {
myhours = (myhours == 0) ? 12 : myhours; mm = " AM";
}
myminutes = mydate.getMinutes();
if (myminutes < 10){
mytime = ":0" + myminutes;
}
else {
mytime = ":" + myminutes;
};
arday = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
armonth = new Array("JAN ","FEB ","MAR ","APR ","MAY ","JUN ","JUL ","AUG ","SEP ", "OCT ","NOV ","DEC ")
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.

// SHOP OPENING HOURS
var shopop = "Showroom is ";
var stropen = "<font color='#00FF00'>OPEN</font>"
var strclose = "<font color='#FF0000'>CLOSED</font>"

if (mm == " PM"){
	if (myday == 6) {
		if (myhours >= 1 && myhours <= 2){
			shopop += stropen;
		}
		else {
			shopop += strclose;
		}
	}
	else if (myday == 0) {
		if (myhours >= 1 && myhours <= 2){
			if (myhours == 2 && myminutes >= 30) {
				shopop += strclose;
			}
			else {
				shopop += stropen;
			}
		}
		else if (myhours == 12){
			shopop += stropen;
		}
		else {
			shopop += strclose;
		}

	}
	else if (myday >= 1 && myday <= 5) {
		if (myhours >= 1 && myhours <= 4){
			shopop += stropen;
		}
		else if (myhours == 12){
			shopop += stropen;
		}
		else {
			shopop += strclose;
		}
	}
}
if (mm == " AM"){
	if (myhours >=9 && myhours <= 11 ){
		if (myday == 0){
			if (myhours == 9 && myminutes < 30) {
				shopop += strclose;
			}
			else {
				shopop += stropen;
			}
		}
		else {
			shopop += stropen;
		}
	}
	else {
		shopop += strclose;
	}
}
document.write(shopop);
document.write("<br>Sydney, Australia");
document.write("<br>" + myhours + mytime + mm + " " + arday[myday] + " " + ardate[myweekday] + " " + armonth[mymonth]);


//-->
 