function openWin(url)
 {
 var mywindow=window.open(url, 'newwin','resizable=no,toolbar=no,scrollbars=no,status=0,left=200,top=200,width=300,height=450');
 }

function openWin1(url, name)
 {
 var windowWidth;
 var windowHeight;
 var e1;
 var e2;
 if (document.all /* Find dimensions for IE */) {
   windowWidth = document.body.clientWidth;
   e1 = windowWidth - 430;
   e2 = 26;
   } else /* Find dimensions for everything else */ {
     windowWidth = window.screen.availWidth;
     windowHeight = window.screen.availHeight;
     e1 = windowWidth - 256;
     e2 = windowHeight - 256;
   }

 var closeup = window.open(url, name, 'width=464,height=650');

 if ((navigator.platform == "Linux") || (navigator.appName == "Microsoft Internet Explorer"))
  closeup.moveTo(e1, e2);

 closeup.focus();
 self.Status = "Click on an image to see a larger view";

 return true;
 }

//("help.asp#"+ anchor, "", "width=500, height=400, scrollbars='1', menubar='1', statusbar='1', resizable='1', titlebar='1', toolbar='0'");
function openWin2(url, name)
 {
 var closeup=window.open(url, name, 'left=0,top=0,width=314,height=450');
 closeup.focus();
 }

