<!--JavaScript Functions//-->

function default_status() {
	window.status = "------> signs that make you go mmmmmmmmmmm";
}
function noViewCode() {
	if (event.button==2) {
		alert(' --== Can not View HTML Code ==-- ');
	}
}
function gettheDate() {
Todays = new Date();
Mnth = Todays.getMonth()+ 1;
if (Mnth == 1) {
Month = "January";
}
if (Mnth == 2) {
Month = "February";
}
if (Mnth == 3) {
Month = "March";
}
if (Mnth == 4) {
Month = "April";
}
if (Mnth == 5) {
Month = "May";
}
if (Mnth == 6) {
Month = "June";
}
if (Mnth == 7) {
Month = "July";
}
if (Mnth == 8) {
Month = "August";
}
if (Mnth == 9) {
Month = "September";
}
if (Mnth == 10) {
Month = "October";
}
if (Mnth == 11) {
Month = "November";
}
if (Mnth == 12) {
Month = "December";
}
TheDate = ""+ Todays.getDate() + " " + Month +", " + Todays.getYear()
return (TheDate);
}