function popWin(strSrc, strWinName , intWidth, intHeight, strResizable)
{
	MyWin= window.open(strSrc, strWinName ,"width=" + intWidth + ",height=" + intHeight + ",left=" + ((screen.width-intWidth)/2) + ",top=" + ((screen.height-intHeight)/2) +",location=no,status=no,scrollbars=yes,resizable=" + strResizable,false);
}

function popWinNoScrollBar(strSrc, strWinName , intWidth, intHeight, strResizable)
{
	MyWin= window.open(strSrc, strWinName ,"width=" + intWidth + ",height=" + intHeight + ",left=" + ((screen.width-intWidth)/2) + ",top=" + ((screen.height-intHeight)/2) +",location=no,status=no,scrollbars=no,resizable=" + strResizable,false);
}

function popWinNoScrollBarCoordinate(strSrc, strWinName , intWidth, intHeight, intLeft, intTop, strResizable)
{
	MyWin= window.open(strSrc, strWinName ,"width=" + intWidth + ",height=" + intHeight + ",left=" + intLeft + ",top=" + intTop +",location=no,status=no,scrollbars=no,resizable=" + strResizable,false);
}