var newWin = null;
function popUp(strURL, strWidth, strHeight) {
 if (newWin != null && !newWin.closed)
   newWin.close();
 var strOptions="height="+strHeight+",width="+strWidth;
 newWin = window.open(strURL, 'newWin', strOptions);
 newWin.focus();
}
