function popBig(webURL,picTitle)
	{
		var newWin = window.open("","new_window","width=800,height=640,scrollbars=0,toolbar=1,status=0");
		newWin.document.write("<html>\n<head>\n<title>");
		newWin.document.write("Hot Jupiter Herps photo gallery: " + picTitle + "<\/title>\n");
		newWin.document.write("<link rel=\"stylesheet\" href=\"hotjupitergallery.css\" type=\"text/css\">\n");
		newWin.document.write("<\/head>\n<body id=\"gallery_popup\">\n");
		newWin.document.write("<div id=\"main_pic\">\n");
		newWin.document.write("<h1>" + picTitle + "<\/h1>\n");
		newWin.document.write("<a href=\"\" onclick=\"self.close();\"><img src=\"images\/" + webURL + "\" border=\"0\" title=\"click to close window\"><\/a>\n");
		newWin.document.write("<\/div>\n");
		newWin.document.write("<\/body>\n<\/html>\n");
		newWin.document.close();
		newWin.focus();
	}
