<!-- 
// 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) {
	designOn = new Image(68, 98);
	designOn.src = levelMod + "../../images/nav/design_roll.gif";
	homeOn = new Image(68, 98);
	homeOn.src = levelMod + "../../images/nav/home_roll.gif";
	aboutOn = new Image(68, 98);
	aboutOn.src = levelMod + "../../images/nav/about_roll.gif";
	productsOn = new Image(68, 98);
	productsOn.src = levelMod + "../../images/nav/products_roll.gif";
	specialsOn = new Image(68, 98);
	specialsOn.src = levelMod + "../../images/nav/specials_roll.gif";
	addressOn = new Image(68, 98);
	addressOn.src = levelMod + "../../images/nav/location_roll.gif";
	contactOn = new Image(68, 98);
	contactOn.src = levelMod + "../../images/nav/contact_roll.gif";
	residentialOn = new Image(68, 98);
	residentialOn.src = levelMod + "../../images/nav/residential_roll.gif";
			
	homeOff = new Image(68, 98);
	homeOff.src = levelMod + "../../images/nav/home_off.gif";
	aboutOff = new Image(68, 98);
	aboutOff.src = levelMod + "../../images/nav/about_off.gif";
	productsOff = new Image(68, 98);
	productsOff.src = levelMod + "../../images/nav/products_off.gif";
	specialsOff = new Image(68, 98);
	specialsOff.src = levelMod + "../../images/nav/specials_off.gif";
	addressOff = new Image(68, 98);
	addressOff.src = levelMod + "../../images/nav/location_off.gif";
	contactOff = new Image(68, 98);
	contactOff.src = levelMod + "../../images/nav/contact_off.gif";
	residentialOff = new Image(68, 98);
	residentialOff.src = levelMod + "../../images/nav/residential_off.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, '', 'The Artful Living Company', inWidth, inHeight, 'resizable,scrollbars,menubar,toolbar');
}


 // -->
