
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=320,height=300,resizable=0,scrollbars=0");
}
