function windowOpen(w,h,name,URL) {
   newWin = window.open(URL,name,"resizable=no,scrollbars=yes,width=" + w + ",height=" + h);
   newWin.focus();
}

function popupOpen(w,h,name,URL) {
   newWin = window.open(URL,name,"resizable=no,scrollbars=no,width=" + w + ",height=" + h);
   newWin.focus();
}

function popup(width, height, scroll, resize, name, url) {
   if (scroll == 1) { scroll = "yes"; } else { scroll = "no"; }
   if (resize == 1) { resize = "yes"; } else { resize = "no"; }

   newWin = window.open(url,name,"resizable=" + resize + ",scrollbars=" + scroll + ",width=" + width + ",height=" + height);
   newWin.focus();
}
