 
function openWindowCenterForm(url, w, h) {
    var horiz = ((screen.width-w)/2);
    var vert = ((screen.height-h)/2)-(screen.height*.06);
    var options = "width=" + w + ",height=" + h + ",";
    options += "resizable=no,scrollbars=no,status=no,";
    options += "menubar=no,toolbar=no,location=no,directories=no,";
    options += "top=" + vert + ", left=" + horiz ;
    var newWin = window.open(url, 'newWin', options);
    newWin.focus();
      }
      
      
function openWindowCenter(url, w, h) {
    var horiz = ((screen.width-w)/2);
    var vert = ((screen.height-h)/2)-(screen.height*.06);
    var options = "width=" + w + ",height=" + h + ",";
    options += "resizable=no,scrollbars=no,status=no,";
    options += "menubar=no,toolbar=no,location=no,directories=no,";
    options += "top=" + vert + ", left=" + horiz ;
    var newWin = window.open(url, 'newWin', options);
    newWin.focus();
      }
      
      
 function openWindow(url, w, h) {
    var horiz = ((screen.width-w)/2);
    var vert = ((screen.height-h)/2)-(screen.height*.06);
    var options = "width=" + w + ",height=" + h + ",";
    options += "resizable=yes,scrollbars=yes,status=no,";
    options += "menubar=no,toolbar=no,location=no,directories=no,";
    options += "top=" + vert + ", left=" + horiz ;
    var newWin = window.open(url, 'newWin', options);
    newWin.focus();
}



