<!-- hide from non-script browsers
if (document.layers) {
	origWidth = innerWidth;
	origHeight = innerHeight;
}

function reloadPage() {
	if (innerWidth != origWidth ||
		innerHeight != origHeight)
	location.reload();
}

if (document.layers) onresize = reloadPage;

window.defaultStatus="www.zetecinside.com"
expireDate = new Date
expireDate.setMonth(expireDate.getMonth()+6)
hitCt = eval(cookieVal("pageHit"))
hitCt++
document.cookie = "pageHit="+hitCt+";expires=" + expireDate.toGMTString()

function cookieVal(cookieName) {
	thisCookie = document.cookie.split("; ")
	for (i=0; i<thisCookie.length; i++) {
		if (cookieName == thisCookie[i].split("=")[0]) {
			return thisCookie[i].split("=")[1]
		}
	}
	return 0
}

function Dater() {
now = new Date();
aDay = new Array('Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday');
aMonth = new Array('January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December');
	if(now.getDate()==1) post='st'; if(now.getDate()==2) post='nd';
        if(now.getDate()==3) post='rd'; if(now.getDate()>=4 && now.getDate()<=20) post='th';
        if(now.getDate()==21) post='st'; if(now.getDate()==22) post='nd';
        if(now.getDate()==23) post='rd'; if(now.getDate()>=24 && now.getDate()<=30) post='th';
        if(now.getDate()==31) post='st';
myDate = aDay[now.getDay()]+" "+now.getDate()+'<sup>'+post+'<\/sup> '+aMonth[now.getMonth()]+' ';
        if (navigator.appName == "Netscape") {myDate += (now.getYear() + 1900);}
        else if (navigator.appName == "Microsoft Internet Explorer"){myDate += (now.getYear());}
        document.write(myDate);
}


function jumpPage(newLoc) {
		newPage = newLoc.options[newLoc.selectedIndex].value
		if (newPage != "") {
				window.location.href = newPage
		}
}
//end hide -->