function productmapToggleProd(prodID) {

	if (document.getElementById) {

		var style2 = document.getElementById(prodID).style;

	}

	else if (document.all) {

		var style2 = document.all[prodID].style;

	}

	else if (document.s) {

		var style2 = document.s[prodID].style;

	}

	style2.display = style2.display? "":"none";

}