<!--

function popup(url,name) {
	settings=
		"left=60,top=60,width=330,height=335"+
		"status=no,menubar=no,scrollbars=yes,resizable=no,"+
		"toolbar=no,location=no,directories=no";

	apriPopup=window.open(url,name,settings);
	}


// popup di conferma
function popupConferma(url,name) {
	settings=
		"left=60,top=60,width=220,height=230"+
		"status=no,menubar=no,scrollbars=no,resizable=no,"+
		"toolbar=no,location=no,directories=no";

	popup1=window.open(url,name,settings);
	}


// popupCentrer
function popupCentrer(page,titre,largeur,hauteur,options) {
var top=(screen.height-hauteur)/2;
var left=(screen.width-largeur)/2;
var ixe=largeur+100;
var igrec=hauteur+150;
window.open(page,titre, "top="+top+",left="+left+",width="+ixe+",height="+igrec+"," + options);
}

// -->
