// resim göster olayı
function Goster(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,20);
 }
}
function viewFoto(img){
 text = "<html><title>.: SanalReklamX.com :.</title><body leftmargin=0 topmargin=0 bottommargin=0 rightmargin=0 onblur='self.close()'><img src='"+img+"' onClick='self.close()' alt='Resmi Kapatmak Için Üzerine Tiklayiniz'></body></html>";
 largh=foto1.width;
 altez=foto1.height;
 stringa="width="+largh+",height="+altez+",toolbar=no,top=150,left=150, scrolbars=no, resize=no, status=no, directories=no, menubar=no";
 finestra=window.open("","",stringa);
 finestra.document.write(text);
 finestra.document.close();
 }
// resim göster olayı