	window.onload = function()
{

 if (document.getElementsByTagName)
 {
  var allLinks = document.getElementsByTagName("a");
  var allInput = document.getElementsByTagName("input");  
  var allTextarea = document.getElementsByTagName("textarea");    
  
  for (var i = 0; i < allInput.length; i++)
  {
  allInput[i].onfocus = function()
	  	{
		this.select();
		}
  }
  
  for (var i = 0; i < allTextarea.length; i++)
  {
  allTextarea[i].onfocus = function()
	  	{
		this.select();
		}
  }  
  
  
  for (var i = 0; i < allLinks.length; i++)
  {
   if (allLinks[i].className == "flecha" || allLinks[i].className == "flechader" || allLinks[i].className == "enlace")
   {
    allLinks[i].onmouseover = function()
	    {
	     var thisImgs = this.getElementsByTagName("img");
	     for (var idx = 0; idx < thisImgs.length; idx++)
	      thisImgs[idx].src = thisImgs[idx].src.replace('.gif', '_on.gif');
	    }
    allLinks[i].onmouseout = function()
	    {
	     var thisImgs = this.getElementsByTagName("img");
	     for (var idx = 0; idx < thisImgs.length; idx++)
	      thisImgs[idx].src = thisImgs[idx].src.replace('_on.gif', '.gif');
	    }
   }
  }
  //flash
		  if (document.getElementById("noflash")) {			
		  fotos = new Array('../img/noflash1.jpg','../img/noflash2.jpg','../img/noflash3.jpg','../img/noflash4.jpg','../img/noflash5.jpg');
		  fotosalt = new Array('. Imagen de una telas de diferentes colores colgadas asemejando banderas, además añade el texto: "Lograr que el derecho a la salud sea universal"','. Imagen de un hombre corriendo visto desde arriba y vestido de traje, además añade el texto: "Avanzar más cada dia"','. Imagen de unas burbujas líquidas de color azul en movimiento, además añade el texto: "desarrollar nuevos conceptos e ideas en salud"','. Imagen de dos personas sentadas en el suelo compartiendo un libro, además añade el texto: "compartir el conocimiento"','. Imagen de un dibujo que representa una espiral de colores anaranjados, además añade el texto: "que el ciudadano sea el centro del sistema sanitario"');

		  numero = Math.round(4-0)*Math.random()+0;
		  numero = Math.round(numero);
		  document.getElementById("noflash").src=fotos[numero]
		  document.getElementById("noflash").alt=fotosalt[numero]	  	  
		  }
	 //flash	  
 }

 
//random home




 
 


/*
//abbr
   function styleAbbr() {
  var oldBodyText, newBodyText, reg
  if (isIE) {
    oldBodyText = document.body.innerHTML;
    reg = /<ABBR([^>]*)>([^<]*)<\/ABBR>/g;
    newBodyText = oldBodyText.replace(reg, '<ABBR $1><SPAN class=\"abbr\" $1>$2</SPAN></ABBR>');
    document.body.innerHTML = newBodyText;
  }
}

isIE = (document.all) ? true:false;
styleAbbr()
//fin abbr
*/
}


/*     --------------------------------         */

function targetBlank (url) {
  blankWin = window.open(url,'_blank','menubar=yes,toolbar=yes,location=yes,directories=yes,fullscreen=no,titlebar=yes,hotkeys=yes,status=yes,scrollbars=yes,resizable=yes');
}

/*
<a href="http://www.domain.com" onclick="targetBlank(this.href);return false;">nueva ventana</a>
*/


