function doPopUnder(URL, Width, Height) {
	objPopUnder = window.open(URL,"PopUnder","width="+Width+",height="+Height+",scrollbars=no,location=no,resizable=no,status=no,menubar=no,toolbar=no,top=50,left=50");
	objPopUnder.blur();
	self.focus();
}

function doPopUp(URL, Width, Height)
{
	doPopUp(URL, Width, Height, 'no')
}

function doPopUp(URL, Width, Height, scrollbars)
{
	objPopUp = window.open(URL,"PopUp","width="+Width+",height="+Height+",scrollbars="+scrollbars+",location=no,resizable=no,status=no,menubar=no,toolbar=no,top=10,left=10");
	objPopUp.focus();
}

