// pop up window function windowOpen(w,h,name,URL) { newWin = window.open(URL,name,"toolbar=no,status=yes,menubar=no,scrollbars=yes,resizable=no,width=" + w + ",height=" + h); newWin.focus(); } function windowOpenscroll(w,h,name,URL) { newWin = window.open(URL,name,"toolbar=no,status=yes,menubar=no,scrollbars=yes,resizable=no,width=" + w + ",height=" + h); newWin.focus(); }