/**
 * utili.js
 * Paola Masin, Marzo 2006
 * This software is provided "AS IS," without a warranty of any kind.
  */
    function initArray() {  
      this.length = initArray.arguments.length;
      {for(i=0;i<this.length;i++)  this[i+1]= initArray.arguments[i];}
   }
   function scriviData() {
   var DOWArray = new initArray("Domenica","Lunedi","Martedi","Mercoledi","Giovedi","Venerdi","Sabato");
   var MOYArray = new initArray("Gennaio","Febbraio","Marzo","Aprile","Maggio","Giugno","Luglio","Agosto","Settembre","Ottobre","Novembre","Dicembre");
   var Oggi = new Date();
   var LastModDate = new Date(document.lastModified); 
  document.write("Ultimo aggiornamento: ");
  document.write(DOWArray[(LastModDate.getDay()+1)],", ");
  document.write(LastModDate.getDate()," ");
  document.write(MOYArray[(LastModDate.getMonth()+1)],",");
  document.write(" ", (LastModDate.getYear()+((navigator.appName == 'Netscape')?1900:0)));
  document.write(".");
  }
function rollIn(el, coloretesto ){
	var ms = navigator.appVersion.indexOf("MSIE");
	ie4 =((ms>=0)&&(parseInt(navigator.appVersion.substring(ms+5,ms+6))>=4));
	if (ie4){	
			el.initstyletext=el.style.cssText;			
			el.style.cssText="cursor: hand; text-decoration: none; font-family: Arial; font-size='2'; font-style: bold; color: " + "#FF3333";
			}
	}
function rollOut(el){
	var ms = navigator.appVersion.indexOf("MSIE");
	ie4 = ((ms>=0)&&(parseInt(navigator.appVersion.substring(ms+5,ms+6))>=4));
	if(ie4)	{
			el.style.cssText = el.initstyletext;
	}
}

function rollSfondo(el, coloresfondo ){
	if (coloresfondo + "a" == "a") el.style.background="";
	else {
		var ms = navigator.appVersion.indexOf("MSIE");
		ie4 = (ms>0)&&(parseInt(navigator.appVersion.substring(ms+5, ms+6))>=4);
		if(ie4)	{
			el.style.background="color: " + "#000080";
		}
	}
}


