function popup(URL, TITLE, HEIGHT, WIDTH, RESIZEABLE)
{
	//alert(URL);
	window.open(URL, TITLE, "directories=no,height=450,width="+WIDTH+",hotkeys=no,location=no,menubar=no,resizable="+RESIZEABLE+",scrollbars=yes,status=no,toolbar=no,copyhistory=no");
}

function popup2(URL, TITLE, HEIGHT, WIDTH, LEFT, TOP, RESIZEABLE)
{
	//alert(URL);
	window.open(URL, TITLE, "directories=no,height=450,width="+WIDTH+",top="+TOP+",left="+LEFT+",hotkeys=no,location=no,menubar=no,resizable="+RESIZEABLE+",scrollbars=yes,status=no,toolbar=no,copyhistory=no");
}