// JavaScript Document
function ridimen()
{
window.moveTo(0,0)
window.resizeTo(screen.availWidth, screen.availHeight)
}

function apri(url)
{
window.location.href=url;
}

function soloNumeri(s)
{  
	Filtro = /[^0-9]/;  s.value = s.value.replace(Filtro,"");
}

function soloSoldi(s)
{  
	Filtro = /[^0-9,,,.]/;  s.value = s.value.replace(Filtro,"");
}

function soloData(s)
{  
	Filtro = /[^0-9,/,]/;  s.value = s.value.replace(Filtro,"");
}

function stampa()
{
window.print();  
}

function parref(pag)
{
window.opener.location.href = pag;
self.close();
}

function ValidaForm()
{
var Nome = document.form1.Nome.value;
var Cognome = document.form1.Cognome.value;

if ((Nome== "") || (Nome== "undefined")) 
{ 
alert("MANCANO ALCUNI DATI OBBLIGATORI!"); 
document.form1.Nome.focus(); 
document.getElementById('Nome').style.borderColor = '#FF0000';
return false;
}
else { document.getElementById('Nome').style.borderColor = '#DFDFDF';
}
//------------------- STOP
if ((Cognome== "") || (Cognome== "undefined")) 
{ 
alert("MANCANO ALCUNI DATI OBBLIGATORI!"); 
document.form1.Cognome.focus(); 
document.getElementById('Cognome').style.borderColor = '#FF0000';
return false;
}
else { document.getElementById('Cognome').style.borderColor = '#DFDFDF';
}
//------------------- STOP
return (true); 
}

function Invia(destinazione)
{
    document.modulo.method = "post";
    document.modulo.action = destinazione + ".asp";
    document.modulo.submit();
}
