function Vis(id){
	document.getElementById(id).style.display="block";
}

function Hid(id){
	document.getElementById(id).style.display="none";
}
