function QuieroSaberMas() {Nueva = window.open("quierosabermas.htm","","left=60,top=60,height=450,width=450")}

var initialsubj="Visita esta página de software. Es muy interesante."
var initialmsg="Hola: creo que te resultará muy interesante visitar esta página en: " + window.location
var good;

function checkEmailAddress(field) {
var goodEmail = field.value.match(/\b(^(\S+@).+((\.com)|(\.net)|(\.edu)|(\.mil)|(\.gov)|(\.org)|(\.info)|(\.biz)|(\.aero)|(\.coop)|(\.museum)|(\.name)|(\.pro)|(\..{2,2}))$)\b/gi);
if (goodEmail) {good = true}
else {alert('Por favor ingrese un email válido antes de enviar.'); field.focus(); field.select(); good = false}}

function mailThisUrl() {good = false
checkEmailAddress(document.eMailer.email);
if (good) {window.location = "mailto:" + document.eMailer.email.value + "?subject=" + initialsubj + "&body=" + initialmsg}}

function AmpliarFoto(img){
  foto=new Image();
  foto.src=(img);
  ControlaFoto(img);
}

function ControlaFoto(img){
  if((foto.width!=0)&&(foto.height!=0)){
    VerFoto(img);
  }
  else{
    funcion="ControlaFoto('"+img+"')";
    intervalo=setTimeout(funcion,20);
  }
}

function VerFoto(img){
  ancho=foto.width + 20;
  alto=foto.height + 20;
  stringventana = "width=" + ancho + ",height=" + alto + ",left=80, top=100";
  ventana = window.open(img, "", stringventana);
}
