<!--
function show(obj){
	if(typeof obj == "string")
		obj = document.getElementById(obj);
	obj.style.display = "block";
}

function hide(obj){
	if(typeof obj == "string")
		obj = document.getElementById(obj);
	obj.style.display = "none";
}
//-->