var visto = null;
	function ver(num) {
	  obj = document.getElementById(num);
	  obj.style.display = (obj==visto) ? 'none' : 'block';
	  if (visto != null)
	    visto.style.display = 'none';
	  visto = (obj==visto) ? null : obj;
	}
	function ver1(num) {
		var t=setTimeout("ver("+num+")",1000) // Tarda 1 segundo en aparecer
	}
	function ver2(num){
		var id = setInterval("ver("+num+")",1000); // Tarda 1 segundo en aparecer y parpadea durante 15 segundos
		setTimeout("clearInterval("+id+")",15000);
	}

