function newWindow(event){

	if (event == "celebrity"){
		preset="celebrity"
		title = "2002 New York State Sports & Entertainment Celebrity Gala"
	}
	else {
		preset="bball"
		title = "Les Harrison Academic & Basketball Camp 2002"
	}
	pastEventsWindow = window.open("","newWin","toolbar=no,location=no,scrollbar=yes,resizable=yes,width=500,height=600")
	pastEventsWindow.focus();
	pastEventsWindow.document.open();
	pastEventsWindow.document.write("<html><head><title>OHL Events</title><link href='styles.css' rel='stylesheet' media='screen'></head>\n")
	pastEventsWindow.document.write("<body bgcolor='#cccc99' leftmargin='0' marginheight='0' marginwidth='0' topmargin='0'>\n")
	pastEventsWindow.document.write("<table border=0 width=500 height=600 cellspacing=0 cellpadding=5>\n")
	pastEventsWindow.document.write("<tr><td colspan=5 align=center class=headline>" + title + "<p><img name=pic src='images/" + preset + "1.jpg'></td></tr>\n")
	pastEventsWindow.document.write("<tr><td colspan=5 align=center class=text>Put mouse over each picture to view</td></tr>")

	for(i=1; i<11;i++){
		if(i==1 || i==6){
			pastEventsWindow.document.write("<tr>")
		}
		pastEventsWindow.document.write("<td align=center height=100 width=100><a href=# onMouseover='document.pic.src=\"images/" + preset + i + ".jpg\"'><img height=60 width=60 border=1 src='images/" + preset + i + ".jpg'></a></td>")
		if(i==5 || i==10){
			pastEventsWindow.document.write("</tr>\n")
		}
	}

	pastEventsWindow.document.write("</tr>\n");
	pastEventsWindow.document.write("</table>\n")
	pastEventsWindow.document.write("</body></html>")
	pastEventsWindow.document.close();
}