
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,20);
  }
}
function viewFoto(img){
  largh=foto1.width+20;
  altez=foto1.height+20;
  stringa="width="+largh+",height="+altez;
  finestra=window.open(img,"",stringa);
}



function cerca_ver()
	{
		stringa = document.cerca.stringa.value
		
		if(stringa){
			document.cerca.submit()
		}
		else
		{
			alert("attenzione il campo cerca risulta essere vuoto");
		}
		
	}
	
function val_contatti()
{
	nome = document.contact.nome.value
	cognome = document.contact.cognome.value 
	email = document.contact.email.value
	note  = document.contact.note.value
	
	
	if(!nome)
	{
		alert("Attenzione il campo nome risuta essere vuoto.");
		document.contact.nome.focus()
	}
	else if(!cognome)
	{
		alert("Attenzione il campo cognome risuta essere vuoto.");
		document.contact.cognome.focus()
	}
	else if(!email)
	{
		alert("Attenzione il campo email risuta essere vuoto.");
		document.contact.email.focus()
	}
	else if(!note)
	{
		alert("Attenzione il cmapo note risulta essere vuoto");
		document.contact.note.focus();
	}
	else
	{
		document.contact.submit();
	}

}
function redirect(nome_pagina)
{
	window.location = nome_pagina;
}
