function show(divId){
	document.getElementById(divId).style.visibility="visible";
	}
function hide(divId){
	document.getElementById(divId).style.visibility="hidden";
	}
