// JavaScript Document

function valida_ricerca() 

{ 

if (document.ricerca.elements['marca'].value == '') {
		alert ('\nNon hai selezionato una Marca\t\n')
		return false;
	}
	
}

function valida_mail() 

{ 

if (document.mail.elements['nome'].value == '') {
		alert ('\nNon hai compilato il campo Nome\t\n')
		return false;
	}

e = document.mail.email.value; 
a = e.indexOf("@"); 
p = e.lastIndexOf("."); 

if (a<3 || p<(a+4) || p>(e.length-3)) { 
alert("Inserire un indirizzo e-mail valido"); 
return false; 
} 	
	
}

function PrevFoto(img, marca, modello){
  foto1= new Image();
  foto1.src=(img);
  Controlla(img, marca, modello);
}

function Controlla(img, marca, modello){
  if((foto1.width!=0)&&(foto1.height!=0)){
    viewFoto(img, marca, modello);
  }
  else{
    funzione="Controlla('"+img+"')";
    intervallo=setTimeout(funzione,20);
  }
}

function viewFoto(img, marca, modello){
  largh=foto1.width;
  altez=foto1.height;
  if (altez < 600) {
  stringa="width="+largh+",height="+altez;
  finestra=window.open("foto.asp?file="+img+"&marca="+marca+"&modello="+modello,"",stringa);  
    }
  else{
  largh=foto1.width+20;	  
  stringa="width="+largh+",height=600, scrollbars=yes";	
  finestra=window.open("foto.asp?file="+img+"&marca="+marca+"&modello="+modello,"",stringa);  
  }
}

function mostra(){ 
document.getElementById('testo').style.display=''; 
} 
