
<!--
 if (navigator.appName == "Microsoft Internet Explorer") { 
    document.write("<link rel='stylesheet' href='style/ie_style.css' type='text/css'>"); } 
 else if ((navigator.appVersion.indexOf("Mac") != -1)) { 
    document.write("<link rel='stylesheet' href='style/mac_style.css' type='text/css'>"); } 
 else { 
    document.write("<link rel='stylesheet' href='style/net_style.css' type='text/css'>"); }

var win = null;
function NewWindow(mypage,myname,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
win = window.open(mypage,myname,settings)
}	

function WM_imageSwap(daImage, daSrc){
  var objStr,obj;
  // Check to make sure that images are supported in the DOM.
  if(document.images){
    // Check to see whether you are using a name, number, or object
    if (typeof(daImage) == 'string') {
      // This whole objStr nonesense is here solely to gain compatability
      // with ie3 for the mac.
      objStr = 'document.' + daImage;
      obj = eval(objStr);
      obj.src = daSrc;
    } else if ((typeof(daImage) == 'object') && daImage && daImage.src) {
      daImage.src = daSrc;
    }
  }
}


function di20(id, newSrc) {
    var theImage = FWFindImage(document, id, 0);
    if (theImage) {
        theImage.src = newSrc;
    }
}

function FWFindImage(doc, name, j) {
    var theImage = false;
    if (doc.images) {
        theImage = doc.images[name];
    }
    if (theImage) {
        return theImage;
    }
    if (doc.layers) {
        for (j = 0; j < doc.layers.length; j++) {
            theImage = FWFindImage(doc.layers[j].document, name, 0);
            if (theImage) {
                return (theImage);
            }
        }
    }
    return (false);
}

function goTW(){
    var URL = document.pathfinder.site.options[document.pathfinder.site.selectedIndex].value;
    window.location.href = URL;

}

function openWindow (earl,name,widgets) {
        host = location.hostname;     
                {
                        var url = earl;
                        }
        popupWin = window.open (url,name,widgets);
        popupWin.opener.top.name="opener";
        popupWin.focus();
        }
function closeWindow () {
        parent.close ();
        }


function WM_preloadImages() {

  if (document.images) {
    if (typeof(document.WM) == 'undefined'){
      document.WM = new Object();
    }
    document.WM.loadedImages = new Array();
    // Loop through all the arguments.
    var argLength = WM_preloadImages.arguments.length;
    for(arg=0;arg<argLength;arg++) {
      // For each arg, create a new image.
      document.WM.loadedImages[arg] = new Image();
      // Then set the source of that image to the current argument.
      document.WM.loadedImages[arg].src = WM_preloadImages.arguments[arg];
    }
  }
}

function printable()
{
 var bgc;
 var fgc;
 var lc;
 var vlc;
 var alc;
 var bkg;
 bgc = document.bgColor;
 fgc = document.fgColor;
 lc =  document.linkColor;
 vlc = document.vlinkColor;
 alc = document.alinkColor; 
 bkg = document.body.background;
 document.bgColor = "white"; 
 document.fgColor = "black";
 document.linkColor = "black";
 document.vlinkColor = "black";
 document.alinkColor = "black";
 document.body.background = "";
 focus()
 print()
 document.bgColor = bgc;
 document.fgColor = fgc;
 document.linkColor = lc;
 document.vlinkColor = vlc;
 document.alinkColor = alc;
 document.body.background = bkg;
}

// -->


