// JavaScript Document


function show(object) {
	obj = document.getElementById(object);
	obj.style.visibility = "visible";
}


function hide(object) { 
	obj = document.getElementById(object);
	obj.style.visibility = "hidden";
} 

