function Popup(locazione,larg,alt) {
newwindow = window.open (locazione, "NewWin", "toolbar=no, scrollbars=yes, location=no, resizable=yes, width="+larg+", height="+alt+", left=0, top=0, right=0, bottom=0");
newwindow.creator=self;
}

function popup(locazione,larg,alt,name) {
newwindow = window.open (locazione, name, "toolbar=no, scrollbars=yes, location=no, resizable=yes, width="+larg+", height="+alt+", left=0, top=0, right=0, bottom=0");
newwindow.creator=self;
}

function redirect(pagina){
	location.href=pagina;
	}

function conferma()
{
    var confirmMsg  = 'Are you sure to delete? ';
    var is_confirmed = confirm(confirmMsg + ' \n');
    return is_confirmed;
}

function afficheMaxi(chemin)
	{
	i1 = new Image;
	i1.src = chemin;
	html = '<HTML>\n<HEAD>\n<TITLE>Image</TITLE>\n</HEAD>\n<BODY LEFTMARGIN=0 MARGINWIDTH=0 TOPMARGIN=0 MARGINHEIGHT=0>\n<CENTER><IMG SRC="'+chemin+'" BORDER=0 NAME=imageTest onLoad="window.resizeTo(document.imageTest.width+14,document.imageTest.height+32)"></CENTER>\n</BODY>\n</HTML>';
	popupImage = window.open('','_blank','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0');
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close()
	};

function AbilitaDisabilita(id) {
	id_div = document.getElementById(id);
	id_img = document.getElementById(id+"_img");

	if (id_div.style.display=='block') {
		id_div.style.display='none';
		id_img.src = "../common/img/piu.gif";
	} else {
		id_div.style.display='block';
		id_img.src = "../common/img/meno.gif";
	}
}
