function popWin(strPage, strWinName, intHeight, intWidth) 
{
	//Pop up dynamic sized window
	var objWin = window.open(strPage,strWinName,"width="+intWidth+",height="+intHeight+",scrollbars=yes,status=no,toolbar=no,resizable=yes");
	objWin.window.focus();
}
