 var newWin;
 function popUp(page, name, details) {
    newWin=window.open(page, name, details);
    newWin.focus();
    return false;
 }

