var thedate = ""
	var montharray=new Array("January","February","March","April","May","June","July","August","September","October","November","December");

	function clockit() {
		var mydate=new Date();
		var year=mydate.getYear();
		if (year<1900) year += 1900;
		var day=mydate.getDay();
		var month=mydate.getMonth();
		var daym=mydate.getDate();
		if (daym<10) daym="0"+daym;
		var hrs=mydate.getHours();
		if(hrs>12) hrs -=12
		var mns=mydate.getMinutes();
		if (mns<10) mns = "0"+mns
		thedate = montharray[month]+" "+daym+", "+year+ " "+hrs + ":"+ mns
		}

	function clocker() {
		clockit()
		document.getElementById("date").childNodes[0].nodeValue = thedate
		setTimeout("clocker()", 60000);
		}

	function pop(p) {
		window.open("?page_id=187","app","directories=0,location=0,menubar=0,resizable=1,scrollbars=1,status=0,toolbar=0,width=550,height=550,top=100,left=50")
		}

	function proof(p) {
		if(p<8) {
			page = "talsheet.asp?"+p
			window.open(page,"sheet","directories=0,location=0,menubar=0,resizable=1,scrollbars=1,status=0,toolbar=0,width=800,height=600")
			}
		}

	function getmail(myForm) {
		var w = window.open('about:blank','Popup',"directories=0,location=0,menubar=0,resizable=1,scrollbars=1,status=0,toolbar=0,width=400,height=200,top=100,left=100");
		myForm.target = 'Popup';
		return true;
		}

	function setup() {
		init()
		clocker()
		}
