
var objWin = null;
function openPop(strUrl){ // there must be a global var: objWin
if(objWin && !objWin.closed) objWin.close();
objWin = window.open(strUrl,"pwin","left=100,top=100,width= 270,height=370,resizable=0,scrollbars=1");
}