var no = 22; // snow number
var speed = 13; // smaller number moves the snow faster
var snowflake = "snow.gif";

var ns4up = (document.layers) ? 1 : 0;  // browser sniffer
var ie4up = (document.all) ? 1 : 0;
var dx, xp, yp;    // coordinate and position variables
var am, stx, sty;  // amplitude and step variables
var i, doc_width = 800, doc_height = 600;


function calcolaData(){
   var oggi = new Date(); 
   var mese = new Array("Gennaio","Febbraio","Marzo","Aprile","Maggio","Giugno","Luglio","Agosto","Settembre","Ottobre","Novembre","Dicembre"); 
   var data = ""; 
   data+=oggi.getDate()<10?"0"+oggi.getDate()+" ":oggi.getDate(); 
   data+=" " + mese[eval(oggi.getMonth())]+ " "; 
   data+=oggi.getFullYear();  
   return(data);
}

function coloreDiv()
{
  document.all["mioLiv"].style.color="Fuchsia"; 
}

function coloreAncoraIn(identificatore)
{
  document.all[identificatore.id].style.color="red";
  document.all[identificatore.id].style.background="trasparent";
}

function coloreAncoraOut(identificatore)
{
  document.all[identificatore.id].style.color="green";
  document.all[identificatore.id].style.background="trasparent";
}

function visitato(identificatore)
{
  document.all[identificatore.id].style.color="#990099";
  document.all[identificatore.id].style.background="trasparent";
}

function validateForm(obj, user, password) {
	with (obj) {
		if (user.value == "") {
			alert("Attenzione, e\' necessario introdurre il nome utente");
			return false;
		}
		if (password.value == "") {
			alert("Attenzione, e\' necessario introdurre la password");
			return false;
		}
	
	    if (user.value.indexOf("=")>-1){
            alert("Attenzione, lo userName non puo\' contenere il carattere '='");
			return false;
		}
		
	    if (password.value.indexOf("=")>-1){
            alert("Attenzione, la password non puo\' contenere il carattere '='");
			return false;
		}	
	}
	obj.submit();
	return true;
}
