<!-- // (script hidden from older browsers.) Example usage: <a href="%20" onclick="OpenPopup('popuppage.html',450,600,0,0,0,1,0);return false;">
// where 'popuppage.html' is the html page to pop up; 450,600 is width,height of popup window in pixels; 0,0,0,1,0 designates off/on switches of window attributes.
// Links with less than five 0/1 switches still work, with unspecified attributes defaulting to off.
// Remember to include:  <script type="text/javascript" src="open-popup.js"></script>  at the bottom of your calling page.
function OpenPopup(page,w,h,resiz,stat,scrol,menu,loc){
  popupWin = window.open(page,'','width='+w+',height='+h+',resizable='+resiz+',status='+stat+',scrollbars='+scrol+',menubar='+menu+',location='+loc);
  window.top.name = 'opener';}
// end -->
