//window.resizeTo(800,600)function timer() { // aggiornamento ore	var today = new Date()	var year = today.getYear()    	var month = today.getMonth()	var day = today.getDate()    	var hour = today.getHours()	var minute = today.getMinutes()	var second = today.getSeconds()	var temp = day + '.' + (month+1) + '.' + year + ' '	temp += "" + hour	temp += ((minute < 10) ? ":0" : ":") + minute	temp += ((second < 10) ? ":0" : ":") + second	if (hour < 6) temp += " - Buonanotte"	else if (hour < 13) temp += " - Buongiorno"	else if (hour < 19) temp += " - Buon Pomeriggio"	else if (hour <= 22) temp += " - Buonasera"	else  temp += " - Buonanotte"	if(document.all)		document.all.primo.innerHTML = temp	else		if(document.getElementById)			document.getElementById('primo').innerHTML = temp}
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}


