function popStory()
{
	var win = window.open('who.htm', 'press', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=650,height=900');
}

function popWhat()
{
	var win = window.open('what.htm', 'press', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=650,height=900');
}

function popImage(imageURL, imageTitle)
{
	var html = "<html>"
	html += "<head><title>" + imageTitle + "</title></head";
	html += "<body style='border-width: 0px; background-color: black;'>"
	html += "<center><img src='" + imageURL + "' name='image' onclick='window.close();' /></center>";
	html += "</body>";
	html += "</html>";
	
	var imW = 650;
	var imH = 450;
	var winattribs = "width=" + imW + ",height=" + imH + ",toolbar=0,locaiton=0,directories=0,menuBar=0,scrollBars=1,resizable=1";
	
	popup = window.open("", "image", winattribs);
	popup.document.open();
	popup.document.write(html);
	popup.document.focus();
	popup.document.close();
}
