function popIt(sURL)
{
	var w=window.open(sURL, "wPop", "menubar=no,location=no,toolbar=no,scrollbars=yes,resizable=no,width=500,height=500");
	w.focus();
}


function popIt2(sURL)
{
	var w=window.open(sURL, "wPop", "menubar=no,location=no,toolbar=no,scrollbars=yes,resizable=yes,width=500,height=500");
	w.focus();
}