<!-- hide from old browsers



/////////////////////////////////////////////////////////////////

// Browser Detection for deciding which css

// to use. Requires that useragent has JavaScript

// on to benefit from CSS.

// Adam Leadoux. 29/06/2001

/////////////////////////////////////////////////////////////////

// Otherwise, use the Windows style sheet.
Bname = navigator.appName;
// If the platform is Macintosh:

//if (navigator.platform.indexOf('Mac') != -1) {
if (navigator.platform.indexOf('Mac') != -1){

 if (Bname =="Netscape")
 { document.write('<link rel="stylesheet" href="/gatehouseproject/macstyles_ghp.css">');}
 
 else

{ document.write('<link rel="stylesheet" href="/gatehouseproject/winstyles_ghp2.css">');}
 }
 else
 {
	 if (Bname =="Netscape")
 { document.write('<link rel="stylesheet" href="/gatehouseproject/winstyles_ghp.css">');}
 
 else

{ document.write('<link rel="stylesheet" href="/gatehouseproject/winstyles_ghp2.css">');}

}

/////////////////////////////////////////////////////////////////

// openWindow function. Called by some pages 

// to open pop up windows

// Adam Leadoux. 29/06/2001

/////////////////////////////////////////////////////////////////



horizontal=0;

vertical=0;

if(screen){

   horizontal=(screen.width/2)-240;

   vertical=(screen.height/2)-150;

   }

   

function openWindow(theURL,winName,features) { //v2.0

   newwindow = window.open(theURL,winName,features);

   newwindow.focus();

  }



// stop hiding -->

