// displayDom by TheArteFacT
//FOR DOTCOM
	function displayDom(id)
	{
		//alert(id);
		
		//closeAll MONODISPLAY
		
		for (var i = 0; i<=10; i++) {
			if (document.getElementById('desc_'+i)) 
			{
				document.getElementById('desc_'+i).style.display='none';
			}
		}
		
//		if (document.getElementById(id))
//		{
//			document.getElementById(id).style.display='block';
//		}
		
		
		//SIMPLE VERSION MULTI DISPLAY
		if(document.getElementById(id).style.display == "block")
		{
			document.getElementById(id).style.display = "none";
		}else{
			document.getElementById(id).style.display = "block";
		}
		
		
	}

