function target_blank(x){
	document.getElementById(x).target="_blank";
}


function popup1200(x){
	document.getElementById('cont').style.display ='none';
	document.getElementById('bg').style.display ='none';
	barre = 0;
	ws = screen.width;
	hs = screen.height;
	altezza=hs-93;
	larghezza=ws-10;
	sc_x = 0;
	sc_y = 0;
	
	if (screen.height < 768){
		barre = 1;
	} 
	
	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();
	
	
}