function showd(id){
	
	document.getElementById(id).style.visibility = 'visible';
	
}

function hided(id){
	
	document.getElementById(id).style.visibility = 'hidden';
	
}
