function go() {
	 document.location.href = 'http://www.oversnc.it/';
	}

	
function changeimage(towhat,url) {
	if (document.images){
		document.images.targetimage.src=towhat.src
		gotolink=url
		}
	}
function warp() {
	window.location=gotolink
	}
	

function verold(dati) {
	 if ((dati.indexOf("@") == -1) |
	    (dati.indexOf(".") == -1) |
	    (dati.length < 7)) 
	  {
	    alert("devi inserire un indirizzo di posta (E-Mail) valido")
	    document.form1.box.value=""
	    document.form1.box.focus()
	  }
	}


function callBack() {
	history.go(-1);
	}




function Verif(){   
		if (document.forms[0].elements[0].value == ""){      
		alert("\nName field is mandatory.\n\nEnter your name.")      
		document.forms[0].elements[0].focus();      
		return false;      
	}   
	
	else if (document.forms[0].elements[1].value == ""){      
		alert("\ndevi inserire un indirizzo E-mail valido dove ricevere il preventivo.\n\nEnter your e-mail address.")      
		document.forms[0].elements[1].focus();      
		return false;       
	}

	else if (document.forms[0].elements[1].value.indexOf ('@',0) == -1 || document.forms[0].elements[1].value.indexOf ('.',0) == -1){      
		alert("\nE-mail scorretta! Inserisci nuovamente la tua e-mail.")      
		document.forms[0].elements[1].select();      
		document.forms[0].elements[1].focus();      
		return false;      
	}   
	else
	return true;   
	}

