


function MM_showHideLayers() { //v9.0 DW Generated
	var i,p,v,obj,args=MM_showHideLayers.arguments;
	for (i=0; i<(args.length-2); i+=3) 
	with (document) if (getElementById && ((obj=getElementById(args[i]))!=null)) { v=args[i+2];
	if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v=='hide')?'hidden':v; }
	obj.visibility=v; }
}




/* JS for FNOWP store locator */
function show_hide(el){
	var snum =5;
	var obj = document.getElementById("box" + snum);
		while(obj)
{
	if(obj.id == el) obj.style.display = "";
		else obj.style.display = "none";
	obj = document.getElementById("box" + snum--);
}
}
function close_it(which){
	document.getElementById(which).style.display = 'none';
}