

function mostraDiv(obj1, obj2){
	document.getElementById(obj1).style.display='none';
	document.getElementById(obj2).style.display='block';
}
