<!-- 
// This is the stuff to check the browser, to block on rollovers for Netscape2
if (((navigator.appName == "Netscape" && parseInt(navigator.appVersion) >= 3) || parseInt(navigator.appVersion) >= 4) || parseInt(navigator.appVarsion) >= 4) 

{
    // We can have rollovers...
    rollOvers = 1;
} else {
    rollOvers = 0;
}



loaded = 0
var dirLevel = 0;
var levelMod = "";
levelMod = "";
for (i = 0;i < dirLevel;i++) {
	levelMod += "../";
}

function loadImg () {
    if (rollOvers) {
		aboutOn = new Image(68, 98);
        aboutOn.src = levelMod + "images/about_roll.gif";
        newsletterOn = new Image(68, 98);
        newsletterOn.src = levelMod + "images/newsletter_roll.gif";
        americaOn = new Image(68, 98);
        americaOn.src = levelMod + "images/america_roll.gif";        
       
        
        aboutOff = new Image(68, 98);
        aboutOff.src = levelMod + "images/about.gif";
        newsletterOff = new Image(68, 98);
        newsletterOff.src = levelMod + "images/newsletter.gif";
        americaOff = new Image(68, 98);
        americaOff.src = levelMod + "images/america.gif";
	
	loaded = 1
    }
}

function switchOn(imgName) {
	if (loaded == 1) {
	imgOn = eval(imgName + "On.src");
	document [imgName].src = imgOn;
	}
}

function switchOff(imgName) {
	if (loaded == 1) {
	imgOff = eval(imgName + "Off.src");
	document [imgName].src = imgOff;
	}
}

 // -->
 
  <!-- 
function openNewWindow(inURL, inName, inTitle, inWidth, inHeight, inFeatures) {
	var features
	features = inFeatures
	if(features != '') features += ','
	features += 'title=' + inTitle + ','
	if(inWidth > 0 && inHeight > 0) {
		features += 'width=' + inWidth + ',height=' + inHeight
	}
	window.open(inURL, inName, features)
}
function openHTMLWindow(inURL, inWidth, inHeight) {
	openNewWindow(inURL, '', 'Jay In Shades of Gray', inWidth, inHeight, 'resizable,scrollbars,menubar,toolbar');
}


 // -->
