//********************************************************************//
//*                             ecdl.js                              *//
//*      libreria javascript: stile, intestazione e piedipagina      *//
//*      revisione: 6/01/2005 - Francesca Grombone - CCE - IUN      *//
//********************************************************************//

function Giorno(intDay) {
	var DayArray = new Array("Domenica", "Lunedì", "Martedì", "Mercoledì", "Giovedì", "Venerdì","Sabato");
	return DayArray[intDay];
}

function Mese(intMonth) {
	var MonthArray = new Array("Gennaio", "Febbraio", "Marzo", "Aprile", "Maggio", "Giugno", "Luglio", "Agosto", "Settembre", "Ottobre", "Novembre", "Dicembre");
	return MonthArray[intMonth];
}

function Anno (t) {
	NS4=(document.layers) ? true : false;
	IE4=(document.all) ? true : false;
	ver4 = (NS4 || IE4) ? true : false;
	if (ver4 || (parseInt(navigator.appVersion)>=5)) {   
		var YearStr = t.getFullYear();
	}
	else var YearStr = t.getYear();
	return YearStr;
}

function scriviData() {
	var t = new Date();
	todayStr = Giorno(t.getDay()) + " " + t.getDate() + " " + Mese(t.getMonth()) + " " + Anno(t);
	document.write(todayStr);
} 

function ultimaModifica() {
	var d = new Date(document.lastModified);
	var ds = Giorno(d.getDay()) + ", " + d.getDate() + " " + Mese(d.getMonth()) + " " + Anno(d);
	document.write(ds);
}

var oggi = new Date();
var a = Anno(oggi);

function intestazione() {
	document.write("<center><table border='0' cellspacing='0' cellpadding='0' width='100%'>");
	document.write("<tr><td align='left' valign='bottom' rowspan='3' height='60'><a href='");
	document.write("http://www.uniparthenope.it/old/rettorato/logo.htm'><img src='");
	document.write("http://www.ecdl.uniparthenope.it/img/logo.gif' alt='Logo Ateneo' border");
	document.write("='0' height='60' width='60'></a></td><td height=20></td></tr><tr>");
	document.write("<td align='right' valign='middle' height='16' width='70%' nowrap ");
	document.write("bgcolor='#000099'><p class='whili'> | <a class='whili' href='");
	document.write("http://www.uniparthenope.it/old/ateneo/news/avven.htm'>News</a> | <a ");
	document.write("class='whili' href='http://www.uniparthenope.it/old/ateneo/onl/start.htm'>");
	document.write("Servizi on-line per gli studenti</a> | <a class='whili' href='http://");
	document.write("www.uniparthenope.it/old/ateneo/siti.htm'>Siti locali</a> | </td></tr><tr>");
	document.write("<td align='right' valign='bottom'><img src='http://www.ecdl.uniparthenope.it/img/iun.gif'");
	document.write(" alt='Denominazione Ateneo' border='0' height='24' width='388'><img src='");
	document.write("http://www.ecdl.uniparthenope.it/img/euro.gif' alt='Logo UE' border=0 height='24' ");
	document.write("width='37'></td></tr><tr><td align='left' valign='middle' colspan='2' ");
	document.write("height='16' bgcolor='#FCC258' nowrap><p class ='whili'> | <a class='whili' ");
	document.write("href='http://www.uniparthenope.it/'>Ateneo</a> | <a class ='whili' href='");
	document.write("http://webmail.uniparthenope.it/'>WebMail</a> | <a class='whili' href='http://");
	document.write("www.uniparthenope.it/old/fonia/fonia.htm'>Fonia</a> | <a class='whili' href='http://");
	document.write("www.centro.uniparthenope.it/centro/servizi-per-lateneo/servizio-antivirus-centralizzato'>");
	document.write("Antivirus</a> | <a class='whili' href='http://www.centro.uniparthenope.it/centro/servizi-per-lateneo/software'>");
	document.write("Software Distribution</a> | <a class='whili' href='ftp://ftp.uniparthenope.it/rassegna/'>");
	document.write("Rassegna Stampa</a> | <a class='whili' href ='ftp://ftp.uniparthenope.it/'>");
	document.write(" FTP</a> | <a class='whili' href='javascript:history.go(-1)'>Back</a> | ");
	document.write("</td></tr></table></center>");
}

function piedipagina() {
	document.write("<center>");
	document.write("<table width='100%' border='0' cellspacing='0' cellpadding='0'>");
	document.write("<tr><td height='10'></td></tr><tr>");
	document.write("<td align='center' bgcolor='#000099' nowrap><p class='whili'>");
	document.write("Sede Centrale: Via Amm. F. Acton, 38 - 80133 Napoli - ");
	document.write("Tel.: 081 5475111 - Fax: 081 5521485</p></td></tr><tr>");
	document.write("<td align='center'><p class='pic'>Ultima revisione pagina: ");
	document.write("<i><script TYPE='text/javascript'>ultimaModifica()</script>");
	document.write("</i> - <a href='mailto:ecdl@uninav.it'>Webeditor</a> - ");
	document.write("&copy; 2003-" + a + " CCE - ");
	document.write("<a href='mailto:centro.calcolo@uninav.it'>Webmaster</a>");
	document.write("</p></td></tr></table></center>");
}
