function show_product(which, product_name, color, width){
	ddrivetip(product_name, color, width); 

}

function toggle_image(bagid, visibility, numgroups) {
	
	var ie=document.all
	var ns6=document.getElementById && !document.all

	var bagname = "bag0";
	var img = bagname;
	/*IMPORTANT:  Must set the number of bags in the for loop "i<6" - this indicates 6-1=5 bags*/
	numgroups = numgroups + 1;
	for (i=1; i<numgroups; i++)
	{
		if (bagid[0] == 'c') {
			bagname = "bag0" + bagid[5];
		}
		bagname = "bag0";
		bagname += i;
		if (bagname != bagid) {
						
			if (ns6) {
				if (visibility == 0)
					document.getElementById(bagname).style.MozOpacity=0.0;
				else
					document.getElementById(bagname).style.MozOpacity=1.0;
			} else if (ie) {
				if (visibility == 0)
					document.getElementById(bagname).filters.alpha.opacity=0;
				else 
					document.getElementById(bagname).filters.alpha.opacity=100;
					
			}
		}
	}
}