//Force Tables in Netscape to go all the way to the right margin
//Pass 'IE' as the second argument to the function if you want to make
//sure IE doesn't put anything in(especially where a table cell
//is supposed to be only 1px high
function makeIt (num,exception) {
var browser = navigator.appName;
var version = parseInt(navigator.appVersion);
var width;
if (browser == "Netscape" && version >= '4') {
width = window.innerWidth;
if (num == 'total') {
//make sure path to spacer.gif is correct
space = "
";
return space;
} else if (width <= num) {
space = ' ';
} else {
width = width - num;
//make sure path to spacer.gif is correct
space = "
";
}
} else if (browser != "Netscape" && num == 'total') {
space = '';
} else if (browser !="Netscape" && exception == "IE") {
space = '';
} else {
space = ' ';
}
return space;
}
function Navon(imgName) {
if (document.images) {
imgOn=eval(imgName + "on.src");
document[imgName].src= imgOn;
}
}
function Navoff(imgName) {
if (document.images) {
imgOff=eval(imgName + "off.src");
document[imgName].src= imgOff;
}
}
//Force NN to reload on re-size
function fixNN () {
var ua = navigator.appName;
var uanum = parseFloat(navigator.appVersion);
if (ua == "Netscape" && uanum >= '4.08') {
location.reload();
} else {
return;
}
}