 <!-- Hide script from old browers

 var win;
 var temp;
 var w = 650;// This is the default value. Will be reset within function htmlbuild if larger or smaller window is required.
 var h = 525;
 var iMyWidth;
 var iMyHeight;

 function newwindow (linkTo)
 {
 
    //gets top and left positions based on user's resolution so hint window is centered.
    iMyWidth = (window.screen.width/2) - (w/2) ; //half the screen width minus half the new window width.
    iMyHeight = (window.screen.height/2) - (h/2) ; //half the screen height minus half the new window height.


    if (win && !win.closed)
     {
      if (linkTo == temp)
       win.focus()
      else
       {
       win.focus()
       win = window.open(linkTo,"newWindow","toolbar=no,location=no,directories=no,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=" + w + ",height=" + h + ",left=" + iMyWidth + ",top=" + iMyHeight);
        }
      }
    else
      win = window.open(linkTo,"newWindow","toolbar=no,location=no,directories=no,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=" + w + ",height=" + h + ",left=" + iMyWidth + ",top=" + iMyHeight);

   temp = linkTo;

 }



//End hiding script from old browsers -->
