// JavaScript Document
function printDate(){
//--------------- LOCALIZEABLE GLOBALS ---------------
var d=new Date();
var monthname=new Array("Gennaio","Febbraio","Marzo","Aprile","Maggio","Giugno","Luglio","Agosto","Settembre","Ottobre","Novembre","Dicembere");
//Ensure correct for language. English is "January 1, 2004"
var TODAY = d.getDate() + " " + monthname[d.getMonth()] + " " +  d.getFullYear();
//---------------   END LOCALIZEABLE   ---------------
return TODAY;
}


function apri(url){
	window.open(url,"PopUp","left=100,top=100,scrollbars=1");
}


function apri2(pagename,pagetitle,w,h){
var NeWin;
	NeWin=window.open (pagename, pagetitle,'width='+w+'px, height='+h+'px, menubar=no, scrollbars=no, resizable=no');
	NeWin.creator=self;
}

function apriModal(pagename,pagetitle,w,h){
var NeWin;
	NeWin=window.showModalDialog (pagename, pagetitle,'dialogWidth:'+w+', dialogHeight:'+h+', menubar=no, scrollbars=no');
}


function checkmail(fieldEmail){
	re = /@/i;
	d = fieldEmail.value.search(re);
	if ((fieldEmail.value == "")||(d==-1)) {
		alert("E-mail inserita in modo non corretto o non inserita!");
		fieldEmail.focus();
		return false;
	}else{
		return true
	}
}

<!-- usata nella gallery per visualizzare l'immagine a centro pagina-->
function imagebig(img,idx){
	var i;
	var stop;
	stop=document.getElementById("maximg").value;
	for (i=0;i<=stop;i++){
		document.getElementById("idx" + i).bgColor="#FEB02A";
	} 
	document.getElementById("centro").src=img;
	document.getElementById(idx).bgColor="#ffffff";
}

