// JavaScript Document

function OpenPopUp(url){   // url contiene l'URL della pagina da visualizzare come pop-up
	var new_window;
	var win_width = 400;  // Larghezza finestra di pop-up   
	var win_height = 500; // Altezza finestra di pop-up   
	new_window = window.open(url,'Assistzenza','top='+(screen.height-win_height)/2+'px,left='+(screen.width-win_width)/2+'px,width='+win_width+'px,height='+win_height+'px,resizable=0,location=0,toolbar=0,menubar=0,status=0');   
	if (window.focus){
		new_window.focus();
	}
}