function showID(c) {
	document.all ? 
		document.all[c].style.visibility = "visible" : 
		document.getElementById(c).style.visibility = "visible";
}
function hideID(c) {
	document.all ? 
		document.all[c].style.visibility = "hidden" : 
		document.getElementById(c).style.visibility = "hidden";
}

