// JavaScript Document

function accedi() {
/*
	switch (txt_login.value) {
	
		case "ascensori" :
			if (txt_pwd.value == "delbo") 
			document.location.href = "Intranet2.htm"
			else
				if (txt_pwd.value == "") alert("Digitare una password")
				else alert("Password errata")
		break			

		case "test" :
			if (txt_pwd.value == "test") document.location.href = "scheda cliente.htm"
			else 
				if (txt_pwd.value == "") alert("Digitare una password")
				else alert("Password errata")
		break			
	
		case "" :
			alert("digitare una login")
		break
		
		default :
			alert("Utente non registrato")
			
	}
Pietro 04/08/2005
*/
/* 
alert(txt_login.value)
alert(txt_pwd.value)
	
if (txt_login.value == ""){
alert("digitare una login")
txt_login.focus()
return
}
if (txt_pwd.value == ""){
alert("digitare una Password")
txt_pwd.focus()
return
}	

if (txt_login.value == "corporate" && txt_pwd.value == "solutions"){
document.location.href = "corporate.htm"
return}else{
alert("Utente non Registrato")
txt_login.focus()
return
}	


if (txt_login.value == "test" && txt_pwd.value == "test"){
document.location.href = "Scheda Cliente.html"
return}else{
alert("Utente non Registrato")
txt_login.focus()
return
}	
*/	
document.form1.action="http://www.delboconsorzio.it/bottom.asp"
document.form1.target="bottomFrame"
document.form1.submit()
}