function MM_showHideLayers( args ) 
		{ //v3.0
		  	var i,p,v,obj;
		  	for (i=-1; i<8; i++ )  {
			if ((obj=document.getElementById( 'makeM'+i ))!=null) 
				{	
				obj1=document.getElementById( 'link'+i )
		    		if (obj.style) 
					{ 
					if (i==args) {  
						obj1.style.textDecoration='underline';
						obj.style.display='inline'; 
						} 
					else {  
						obj.style.display='none';
						obj1.style.textDecoration='none';
						}
						   
					}
				
				}
			}

		}

