
function imagePopUp(URL, title, w, h)
{
	new_win = window.open(URL, "","toolbar=0,scrollbars=0,status=0,width="+w+",height="+h+",top=132")
	new_win.document.write('<html><head><title>'+title+'</title></head><body background="'+URL+'"></body></html>')
	new_win.document.close()
	new_win.focus()
}

function popUp(URL)
{
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "','toolbar=0, scrollbars=0, location=0, status=0, menubar=0, resizable=0, width=500, height=450, top=132');");
}

function apofpowindow(URL, h, w)
{
	window.open(URL, "",
		"toolbar=0,scrollbars=0,location=0,status=0,menubar=0,resizable=0,width="+w+",height="+h+",top=132");
}
