function myVoid() { /** blank **/ }

function popup( strUrl, intWidth, intHeight)
{
	var newWindow = window.open(strUrl,"","width=" + intWidth + ", height=" + intHeight + ", top=10,left=10, scrollbars=1, resizable=1");
}

function popupModal( strUrl, intWidth, intHeight)
{
	if(window.showModalDialog)
	{
		var newWindow = window.showModalDialog(strUrl,"","width=" + intWidth + ", height=" + intHeight + ", top=10,left=10, scrollbars=1, resizable=1");
	}
	else
	{
		var newWindow = window.open(strUrl,"","width=" + intWidth + ", height=" + intHeight + ", top=10,left=10, scrollbars=1, resizable=1, modal=yes");
	}
}

function popupNoScroll( strUrl, intWidth, intHeight)
{
	var newWindow = window.open(strUrl,"","width=" + intWidth + ", height=" + intHeight + ", top=10,left=10, scrollbars=0, resizable=0");
}	

