function target_blank(x){
	document.getElementById(x).target="_blank";
}

function popup(x){
	barre = 0;

	if (screen.height < 768){
		barre = 1;
	} 

	ws = screen.width;
	hs = screen.height;
	
	altezza=657;
	larghezza=1014;
	
	sc_x = (ws-larghezza)/2;
	sc_y = (hs-altezza)/2;
	
	if (sc_x < 0){
	sc_x = 0;
	}
	if (sc_y < 0){
	sc_y = 0;
	}
	
	newwin=window.open('','sitoflashnew',"scrollbars="+barre+",status=1,statusbar=1,toolbar=no,location=no,menubar=no,resizable=no,top="+sc_y+",left="+sc_x+",screenX="+sc_x+",screenY="+sc_y+",width="+larghezza+",height="+altezza);
	document.getElementById(x).target="sitoflashnew";
	newwin.focus();
}