function newWindow(mypage, myname, w, h, scroll, resize) 
{
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'height='+h+', width='+w+', top='+wint+', left='+winl+', scrollbars='+scroll+', resizable='+resize+', toolbar=no, location=no, menubar=no, status=no, titlebar=no'; 
	win = window.open(mypage, myname, winprops);
	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

function myDate(){	
	var d = new Date();
	var month = new Array(12);
	month[0]="January";
	month[1]="February";
	month[2]="March";
	month[3]="April";
	month[4]="May";
	month[5]="June";
	month[6]="July";
	month[7]="August";
	month[8]="September";
	month[9]="October";
	month[10]="November";
	month[11]="December";

	return document.write(month[d.getUTCMonth()] + " " + d.getDate() + ", " + d.getFullYear());
}
