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 popupMap(thePage,theWidth,theHeight)
 {
 	
   popUp = window.open(thePage, "window", "menubar=yes,scrollbars=yes,resizable=no,status=no,width="+theWidth+",height="+theHeight);
   popUp.focus();
 }