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