function MM_showHideLayers() { //v6.0
  var i,p,v,obj,args=MM_showHideLayers.arguments;
  for (i=0; i<(args.length-2); i+=3) if ((obj=MM_findObj(args[i]))!=null) { v=args[i+2];
    if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v=='hide')?'hidden':v; }
    obj.visibility=v; }
}

var NN4=(document.layers)?1:0;
var IE4=(document.all)?1:0;
var NN6=(document.getElementById)?1:0;
var cache="";

function SmartShowHide() { //© 2002 SmartPixel
	var root;
	args=SmartShowHide.arguments;
	if (cache+""!="") window.clearTimeout(cache);
	for (i=0;i<args.length;i+=2) {
		id=args[i];
		if (NN4) root=document.layers[id];
		else if (IE4) root=document.all[id].style;
		else if (NN6) root=document.getElementById(id).style;
		root.visibility=(args[i+1]=="on")?"visible":"hidden";
	}
}

function SmartClear(state) { //© 2002 SmartPixel
	 cache=(state)?window.setTimeout("SmartShowHide('Men01','','Men02','','Men03','','Men04','','Men05','','Men06','',)",1200):window.clearTimeout(cache);
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}