function CaricaFoto(img){
  foto1= new Image();
  foto1.src=(img);
  Controlla(img);
}
function Controlla(img){
  if((foto1.width!=0)&&(foto1.height!=0)){
    viewFoto(img);
  }
  else{
    funzione="Controlla('"+img+"')";
    intervallo=setTimeout(funzione,0);
  }
}
function viewFoto(img){
  largh=foto1.width+20;
  altez=foto1.height+20;
  stringa="width="+largh+",height="+altez+",top=0,left=0,resizable=yes,scrollbars=yes";
  finestra=window.open(img,"",stringa);
}

function chequearForm() {
var i=0
while (i<document.forms[0].elements.length) {
if (document.forms[0].elements[i].value=='') {
alert('Todos los campos son obligatorios.\nPor favor ingrese el campo:\n\n\t'+document.forms[0].elements[i].name +'\n\ne inténtelo nuevamente.\n\nInstituto Kali - Jun Fan.');
document.forms[0].elements[i].focus();
return false
}
i ++
}
}