
// DATA
<!--

function GetDay(intDay){

     var DayArray = new Array("Sunday", "Monday", "Tuesday", "Wednesday", 

                          "Thursday", "Friday", "Saturday")

     return DayArray[intDay]

     }



   function GetMonth(intMonth){

     var MonthArray = new Array("Gennaio", "Febbraio", "Marzo",

                                "Aprile", "Maggio", "Giugno",

                                "Luglio", "Agosto", "Settembre",

                                "Ottobre", "Novembre", "Dicembre") 

     return MonthArray[intMonth]                  

     }

   function getDateStrWithDOW(){

     var today = new Date()

     

     todayStr = today.getDate() + " " + GetMonth(today.getMonth()) + " "

        NS4=(document.layers) ? true : false;

        IE4=(document.all)?true:false;

        ver4 = (NS4 || IE4) ? true : false;

        if (ver4) {

                todayStr += today.getFullYear();

        }

                else

         todayStr += today.getYear();



     return todayStr

     }


// CHIUDE LA FINESTRA

<!--

function winclose(URL){
	var wind;
	wind = window.close(URL);
					}	

// -->

// Pop-Up

<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->
