


newWindow=new Object;
newWindow.closed=true;

function newWindowopener(details,imageName,pdfFile)
{
	if (!newWindow.closed){
		newWindow.close();
	}
	
	var window_features="width=650,height=600,status=0,menubar=0,toolbar=0,menubar=0,scrollbars=1,resizable=1";
	var copy="Phone: 219/929-3136 or 800/HI-PURDUE x.3136, <br />(toll free locally within Indiana &amp; Illinois)"
	newWindow=window.open("","",window_features);
	newWindow.document.write("<html><head><title>" + details + "</title>");
	newWindow.document.writeln("</head><body>");
	newWindow.document.writeln("<div id=\"photo\">");
	newWindow.document.writeln("<img src=\"" + imageName + "\" alt=\"" + details + "\">");
	newWindow.document.writeln("<p style=\"font-size:12px;font-weight:bold; margin:0.5em; padding:0px; line-height:1/5;font-family:sans-serif; text-align:center;\">" + details + "<br>"+ copy+"<br>") ;
	newWindow.document.writeln("<a href= "+ pdfFile + " target=\"_blank\">Printable pdf file</a> <br>");
	newWindow.document.write("<a href=\"#\" onclick=\"self.close()\">");
	newWindow.document.write("Close Window</a></p></div>");
	newWindow.document.writeln("</body></html>");
	newWindow.document.close();
	newWindow.focus();
}



function MonthTxt (MonthNumber){
		var Month = new Array();
		Month[1] = "January";
		Month[2] = "February";
		Month[3] = "March";
		Month[4] = "April";
		Month[5] = "May";
		Month[6] = "June";
		Month[7] = "July";
		Month[8] = "August";
		Month[9] = "September";
		Month[10] = "October";
		Month[11] = "November";
		Month[12] = "December";
	return Month[MonthNumber];
	}

function WeekDayTxt (DayNumber){
	var dayName = new Array
	dayName[0] = "Sunday";
	dayName[1] = "Monday";
	dayName[2] = "Tuesday";
	dayName[3] = "Wednesday";
	dayName[4] = "Thursday";
	dayName[5] = "Friday";
	dayName[6] = "Saturday";
	return dayName[DayNumber];
	}