 function cambiaemail (info) {
 var res = "";
 for (var n = 0; n < info.length; n++)
 res += String.fromCharCode(info.charCodeAt(n));
 if (res.indexOf('@') < 0)
 res = res + '@' + 'daymsa.com';
 location = "mail" + "to:" + res;
 }
 
  function popUp(url,name,width,height,scrollbars,dependent,resizable){
  if(!dependent){
    dependent=false;
  }
  if(!resizable){
    resizable=true;
  }
  ventana=window.open(url,name,'width='+width+',height='+height+',scrollbars='+scrollbars+',left=0,top=0,dependent='+dependent+'resizable='+resizable);
}