<!--
 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'>"); }

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 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 goTW(){
    var URL = document.pathfinder.site.options[document.pathfinder.site.selectedIndex].value;
    window.location.href = URL;

}

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 formHandler(form){
var URL = document.form.categoryname.options[document.form.categoryname.selectedIndex].value;
window.location.href = URL;
}

// -->


