// JavaScript Document
function popupWindow1(thePage,theWidth,theHeight)
 {
   popUp = window.open(thePage, "win", "menubar=no,scrollbars=no,resizable=no,status=no,width="+theWidth+",height="+theHeight)
   popUp.focus()
 }
function popupWindow(thePage,theWidth,theHeight)
 {
   popUp = window.open(thePage, "window", "menubar=no,scrollbars=yes,resizable=no,status=no,width="+theWidth+",height="+theHeight)
   popUp.focus()
 }