// JavaScript Document
function showHide (show) {
	document.getElementById(show).style.display = "inline";
	
}
function Hide (hide) {
	document.getElementById(hide).style.display = "none";
}
function buTTon(buTon){
	document.getElementById(buTon).style.cursor = "pointer";
}