function escribirEstado() {
window.defaultStatus= "Bienvenido a mi página © Copyright Shyra Gosurreta";
}

function visor(titulo,imagesrc,winwidth,winheight){
var look='width='+winwidth+',height='+winheight+',top=0,left=0,'
popwin=window.open("","",look)
popwin.document.open()
popwin.document.write('<title>'+titulo+'</title><body style="margin:0"><img src="'+imagesrc+'"></body>')
popwin.document.close()
}


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";
  finestra=window.open(img,"",stringa);
}
