// Display the Date Above Each Page
function gDate() {
	var temp = new Date();
	month = temp.getMonth();
	day = temp.getDate();
	year = temp.getYear();
	
	switch (month) {
		case 0: month = "January"; break;
		case 1: month = "February"; break;
		case 2: month = "March"; break;
		case 3: month = "April"; break;
		case 4: month = "May"; break;
		case 5: month = "June"; break;
		case 6: month = "July"; break;
		case 7: month = "August"; break;
		case 8: month = "September"; break;
		case 9: month = "October"; break;
		case 10: month = "November"; break;
		case 11: month = "December"; break;
	}

	// Make-shift Year Fix for Some Browsers

	if (year == 100 || year == 19100) {
		year = 2000;
	}
	
	document.write (month + " " + day + ", " + year);
}

// Open Full Image in Browser Window
function openWin(x, y, pic, alt) {
	
	fix = "width=" + x + ",height=" + y + ",status=no,menubar=no,scrollable=no,resizable=no,toolbar=no,location=no,directories=no";
	
	iWin = open('', 'InTouch', fix);
	iWin.document.open();
	iWin.document.write("<HTML><HEAD>");
	iWin.document.write("<BODY LEFTMARGIN=0 TOPMARGIN=0 MARGINHEIGHT=0 MARGINWIDTH=0>");
	
	pic = "<IMG SRC=\"IMAGES/" + pic + ".JPG\"" + " WIDTH=\"" + x + "\" HEIGHT=\"" + y + "\" BORDER=0 ALT=\"" + alt + "\">";
	iWin.document.write(pic);
	iWin.document.write("</HEAD></HTML>");
	iWin.document.close();
}