function openDocWin(nome_doc,w,h)
{
	newWin=window.open(nome_doc,'','scrollbars=yes,toolbar=no,menubar=no,resizable=no,status=no,directories=no,titlebar=no,width=' + w +',height=' + h + ',top=100,left=100');
}
function alphaon(x)
{
	document[x].filters.alpha.opacity +=50;
}

function alphaoff(x)
{
	document[x].filters.alpha.opacity -=50
}

function popms(testo)
{
	alert(testo);
}

function DataOra()
{
	dataoggi = new Date();
	giorno = dataoggi.getDate();
	mese = dataoggi.getMonth();
	anno = dataoggi.getYear();
	ora = dataoggi.getHours();
	minuti = dataoggi.getMinutes();
	document.write(giorno + "/" + mese + "/" + anno + " - " + ora +":" + minuti);
}