function mostrar(id){
	for(x=1;x<11;x++){
		try{
			actual=document.getElementById("tab"+x);	
			actual.style.display="none";		
		}catch(e){}
	}	
	actual=document.getElementById(id);	
	actual.style.display="block";
}