
  NS4 = (document.layers);
   IE4 = (document.all);
loader = window;
if(NS4){
 origWidth = loader.innerWidth;
 origHeight = loader.innerHeight;
 loader.onresize = reDo;
}
 
function reDo()
{
 if (loader.innerWidth==origWidth && loader.innerHeight==origHeight) return;
    loader.location.reload();
}


/* For older style roll-over implementation */

function dm(msgStr) {
    window.status = msgStr;
    document.MM_returnValue = true;
}

/* Function that swaps images. */

function di20(id, newSrc) {
    var theImage = FWFindImage(document, id, 0);
    if (theImage) {
        theImage.src = newSrc;
    }
}

/* Functions that track and set toggle group button states. */

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);
}
var whatbrowse = "ie";

if (NS4) { whatbrowse = "ns"; }
if (IE4) { whatbrowse = "ie"; }
var stylelink = '<LINK REL="stylesheet" TYPE="text/css" HREF="/css/' + whatbrowse + '.css" >';
document.write(stylelink);


