// JavaScript Document
function hideShow(id){
		
	if(window.navigator.appName == 'Microsoft Internet Explorer'){
	
		if(document.getElementById(id).style.cssText == 'width: 200px;display:inline-block;'){
			document.getElementById(id).style.cssText = 'width:0px;display:none;height:0px;'; 
		}else{
			document.getElementById(id).style.cssText = 'width: 200px;display:inline-block;';
		}
		
	}else{
		
		if(document.getElementById(id).attributes[1].value == 'show'){
			document.getElementById(id).setAttribute("class", "hide"); 
		}else{
			document.getElementById(id).setAttribute("class", "show"); 
		}
	}	
}
