

function popUp(URL, w, h)
{
	photos = window.open (URL, "photos","resizable=yes,height=" + h + ",width=" + w + ",scrollbars=no");

}
function popUpScroll(URL, w, h)
{
	press = window.open (URL, "press","resizable=yes,height=" + h + ",width=" + w + ",scrollbars=yes");
}

function popUpFile(URL, h, w)
{
	myWin2 = window.open (URL, "myWin2",
	       "resizable=yes,height=" + h + ",width=" + w +
	       ",scrollbars=yes");
	void('');
	if (myWin && !myWin.closed)
		myWin.close();

}