function update(url,index,isSuper) {
 	document['picNoticia'].src=url;
}
function vuelve(imagen){
	document['picNoticia'].src=imagen;
}
function mostrar(elem,boton){
        var obj = document.getElementById(elem)
        if(obj.style.display== "inline")  obj.style.display= "none";
        else obj.style.display= "inline";
		/*-------------*/
	
}
function sobre(elem,url){
	document[elem].src=url;
}

function obtenerObjeto(Id)                                                                 
{                 
  var obj = null;                                                                                                       
  // Netscape 6,7 y Explorer 5                                                         
  if (document.getElementById) {                                                       
	obj = document.getElementById(Id);                                                                                                                                                                                          
  }                                                                                    
  // Explorer 4                                                                        
  else if (document.all) {                                                             
	obj = document.all[Id];                                                      
  }                                                                                    
  // Netscape 4                                                                        
  else if (document.layers) {                                                          
	obj = document.layers[Id];                                                   
  }      
  return obj;      
}
	
function SetHand(obj)
{
	obj.style.cursor="Pointer";
}

function enviaMail (buzon) {
var res = "";
for (var n = 0; n < buzon.length; n++)
res += String.fromCharCode(buzon.charCodeAt(n));
if (res.indexOf('@') < 0)
res = res + '@' + 'jagarciamoya.com';
location = "mail" + "to:" + res;

}
