//funzione di rimando su tutte le pagine
function gotourl(url)
{
window.top.location.href = url;
}

var isIE = document.all?true:false;
var isNS = document.layers?true:false;
function onlyDigits(e) 
{
	var _ret = true;
	if (isIE) 
	{
	if ((window.event.keyCode < 48 || window.event.keyCode > 57) && window.event.keyCode != 44 && window.event.keyCode != 46) 
		{
		window.event.keyCode = 0;
		_ret = false;
		}
	}
	if (isNS) 
	{
	if (e.which < 46 || e.which > 57) 
		{
		e.which = 0;
		_ret = false;
		}
	}
return (_ret); 
}
function onlyEuro(e) 
{
	var _ret = true;
	if (isIE) 
	{
	if ((window.event.keyCode < 46 || window.event.keyCode > 57)) 
		{
		window.event.keyCode = 0;
		_ret = false;
		}
	}
	if (isNS) 
	{
	if (e.which < 46 || e.which > 57) 
		{
		e.which = 0;
		_ret = false;
		}
	}
return (_ret); 
}

function ValidateLogin()
{
if (document.formlogin.UID.value != '' && document.formlogin.PWD.value != '')	{	document.formlogin.submit()	}else	{	alert('Compilare Login e Password')	}	
}
function SetCookie(stato){	document.formlogin.RememberLogin.value = (stato)?1:0;
}
