function showText(id){
	document.getElementById(id).style.display="block";
}

function closeW(id){
		document.getElementById(id).style.display="none";
}
