

//Time Stamp Script
function CurrentDate() {

   //Create Date Object
	MyDate  = new Date();
	WeekDay = MyDate.getDay();
	Month	= MyDate.getMonth();
	Day	= MyDate.getDate();
	Year	= MyDate.getFullYear();

   //Define Days of the Week
	   if (WeekDay == "0") {
		WeekDay = "Sunday";
	   }
	   else if (WeekDay == "1") {
		WeekDay = "Monday";
	   }
	   else if (WeekDay == "2") {
		WeekDay = "Tuesday";
	   }
	   else if (WeekDay == "3") {
		WeekDay = "Wednesday";
	   }
	   else if (WeekDay == "4") {
		WeekDay = "Thursday";
	   }
	   else if (WeekDay == "5") {
		WeekDay = "Friday";
	   }
	   else if (WeekDay == "6") {
		WeekDay = "Saturday";
	   }

   //Define Months of the Year
	if (Month == "0") {
		Month = "January";
	}
	else if (Month == "1") {
		Month = "Febuary";
	}
	else if (Month == "2") {
		Month = "March";
	}
	else if (Month == "3") {
		Month = "April";
	}
	else if (Month == "4") {
		Month = "May";
	}
	else if (Month == "5") {
		Month = "June";
	}
	else if (Month == "6") {
		Month = "July";
	}
	else if (Month == "7") {
		Month = "August";
	}
	else if (Month == "8") {
		Month = "September";
	}
	else if (Month == "9") {
		Month = "October";
	}
	else if (Month == "10") {
		Month = "November";
	}
	else if (Month == "11") {
		Month = "December";
	}
}


// Create New Window For Printer Friendly Location Map
function PrintWin() {

  leftPos = 0
  if (screen) { leftPos = screen.width-500 }
	Remote = window.open("printmap.html","URL","toolbars=yes,menubars=yes,scrollbars=yes,width=510,height=500,left='+leftPos+',top=0");
}






