
function prec(str) {

        searchWin = window.open(str,'prec','scrollbars=yes,resizable=yes,width=500,height=350,status=no,location=no,toolbar=no');

}


function prec1(str) {

        searchWin = window.open(str,'prec1','scrollbars=no,resizable=yes,width=500,height=558,status=no,location=no,toolbar=no');

}

<!-- Original:  Andrea Bianchi  -->
<!-- Web Site:  http://www.web-link.it -->

function WebDate() {
	var now = new Date();
	var year= now.getYear();if (year < 1000) year += 1900;
	nameDay = new Array('Domenica','Lunedi','Martedi','Mercoledi','Giovedi','Venerdi','Sabato');
	nameMth = new Array('Gennaio','Febbraio','Marzo','Aprile','Maggio', 'Giugno', 'Luglio', 'Agosto', 'Settembre', 'Ottobre', 'Novembre','Dicembre');
	document.write('<p> '+nameDay[now.getDay()]+ ' ' + now.getDate() + " " + nameMth[now.getMonth()] + " " + year+'</p>');
	
}

