

function SiteMap() 
{
if ((navigator.appVersion) >= "4.0")

{
  // open the popup window
  var popupURL = "/data/site_map/site_map.html";
    var popup = window.open(popupURL,"SiteMap",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=500,height=500,screenX=45,left=45,screenY=100,top=100');
  // set the opener if it's not already set.  it's set automatically
  // in netscape 3.0+ and ie 3.0+.
  if( navigator.appName.substring(0,8) == "Netscape" ) {
    popup.location = popupURL;
  }
}
}


function Contact()
{
if ((navigator.appVersion) >= "4.0")

{
  // open the popup window
  var popupURL = "/data/contact/contact.html";
  var popup = window.open(popupURL,"SiteMap",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=auto,resizable=0,width=480,height=343,screenX=45,left=45,screenY=100,top=100');
  // set the opener if it's not already set.  it's set automatically
  // in netscape 3.0+ and ie 3.0+.
  if( navigator.appName.substring(0,8) == "Netscape" ) {
    popup.location = popupURL;
  }
}
}

function Contact_On_SiteMap()
{
  if( navigator.appName.substring(0,8) == "Netscape" ) {
  // open the popup window
	var popupURL = "/data/contact/contact.html";
  	var popup = window.open(popupURL,"SiteMap",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=auto,resizable=0,width=480,height=343,screenX=45,left=45,screenY=100,top=100')
  // set the opener if it's not already set.  it's set automatically
  // in netscape 3.0+ and ie 3.0+.
    	popup.location = popupURL;
  }else{
	var popupURL = "/data/contact/contact.html";
  	window.open(popupURL,"Contact",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=auto,resizable=0,width=480,height=343,screenX=45,left=45,screenY=100,top=100')
        window.close();
  }

}
