defaultWidth  = 500;
defaultHeight = 500;

function popup(imageURL,imageTitle)
{
	winpops=window.open(imageURL,"","width=460,height=676,")
}


function popup2(imageURL)
{
	winpops=window.open(imageURL,"","width=222,height=222,")
}


function NewWindow(mypage, myname, w, h, scroll, date) 
{
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
	win = window.open(mypage,"test", winprops)
	if (parseInt(navigator.appVersion) >= 4) 
		{ win.window.focus(); }
}
