
function popupWinWithNoScroll(sUrl, nWidth, nHeight)
{
	nLeft = (window.screen.width - nWidth ) / 2;
	nTop  = (window.screen.height- nHeight) / 2;
	sF  = "";
	sF += "toolbar=no,location=no,menubar=no,status=no,directories=no,resizable=no,scrollbars=no";
	sF += ",left=" + nLeft;
	sF += ",top=" + nTop;
	sF += ",width=" +  nWidth;
	sF += ",height=" + nHeight;
	window.open(sUrl, "", sF);
}

function popupOrgWinWithNoScroll(sUrl, nWidth, nHeight)  
{
	nLeft = 0;
	nTop  = 0;
	sF  = "";
	sF += "toolbar=no,location=no,menubar=no,status=no,directories=no,resizable=no,scrollbars=no";
	sF += ",left=" + nLeft;
	sF += ",top=" + nTop;
	sF += ",width=" +  nWidth;
	sF += ",height=" + nHeight;
	window.open(sUrl, "", sF);
}


function popupWinWithScroll(sUrl, nWidth, nHeight)
{ 
	nLeft = (window.screen.width - nWidth ) / 2;
	nTop  = (window.screen.height- nHeight) / 2;
	sF  = "";
	sF += "toolbar=no,location=no,menubar=no,status=no,directories=no,resizable=no,scrollbars=yes";
	sF += ",left=" + nLeft;
	sF += ",top=" + nTop;
	sF += ",width=" +  nWidth;
	sF += ",height=" + nHeight;
	window.open(sUrl, "", sF);
}

function popupOrgWinWithScroll(sUrl, nWidth, nHeight) 
{ 
	nLeft = 0;
	nTop  = 0;
	sF  = "";
	sF += "toolbar=no,location=no,menubar=no,status=no,directories=no,resizable=no,scrollbars=yes";
	sF += ",left=" + nLeft;
	sF += ",top=" + nTop;
	sF += ",width=" +  nWidth;
	sF += ",height=" + nHeight;
	window.open(sUrl, "", sF);
}
