  var NewWindow;
  function openWindow(winURL, winName,left,top,height,width) {
    NewWindow = window.open(winURL, winName,"left="+left+", top="+top+", status=0, height="+height+", width="+width+", toolbar=0, menubar=0, scrollbars=1, resizable=0");
    NewWindow.focus();
 }
