function popupWindow(thePage,theWidth,theHeight)
 {
   popUp = window.open(thePage, "window", "menubar=yes,scrollbars=yes,resizable=no,status=yes,width="+theWidth+",height="+theHeight)
   popUp.focus()
 }

function popupWindow2(thePage,theWidth,theHeight)
 {
   popUp2 = window.open(thePage, "window2", "menubar=yes,scrollbars=yes,resizable=no,status=yes,width="+theWidth+",height="+theHeight)
   popUp2.focus()
 }