// JavaScript Document
self.name = 'GardenSuperMart';
function showprodinfo(productname){
	for (var i=1;i<=5;i++) {
	var product = "product" + i;
	document.getElementById(product).style.display = "none";
	}
	if (document.getElementById){ document.getElementById(productname).style.display = "block";}
		else{document[productname].display = "block";} 
}
function featured(productname, navname, totalfeatured){
	for (var i=1;i<=totalfeatured;i++) {
	var featured = "featured" + i;
	var fnav = "fnav" + i;
	document.getElementById(featured).style.display = "none";
	document.getElementById(fnav).style.background = "url(../images/features-notactive.gif)";
	}
	if (document.getElementById){
			document.getElementById(productname).style.display = "block";
			document.getElementById(navname).style.background = "url(../images/features-active.gif)";
	}else{
			document[productname].display = "block";
			document.getElementById(navname).style.background = "url(../images/features-active.gif)";
	}
}
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}