<!--


// If the platform is Macintosh:
if (navigator.platform.indexOf('Mac') != -1) {
   // If IE 5.0 for Mac use winstyles.css
   if (navigator.userAgent.indexOf("MSIE 5.") != -1)
{      document.write('<link rel="stylesheet" href="/winstyles.css">');}
   else {
      document.write('<link rel="stylesheet" href="/macstyles.css">');}
   } // end Mac if
// Otherwise, use the Windows style sheet.
   else{
   document.write('<link rel="stylesheet" href="/winstyles.css">');
}
  
  
// openWindow fuction
horizontal=0;
vertical=0;

if(screen){
   horizontal=(screen.width/2)-200;
   vertical=(screen.height/2)-150;
   }
   
function openWindow(theURL,winName,features) { //v2.0
   newwindow = window.open(theURL,winName,features);
   newwindow.focus();
  }
  
  
// -->
