// function to popup window
function popWin(strSrc, strWinName , intWidth, intHeight, strResizable)
{
var win
win = document.open(strSrc, strWinName ,"width=" + intWidth + ",height=" + intHeight + ",location=no,status=no,toolbar=no,scrollbars=yes,resizable=" + strResizable,false);
return win;
}

