function PopIt(label, msg1, msg2, msg3, msg4){  
	// Set up Page Colors & Table  
	var s1 = "<TITLE>Avviso</TITLE>" +    
	"<BODY onBlur='self.focus()' BGCOLOR='FFFFFF' TOPMARGIN=5 LEFTMARGIN=0><TABLE BORDER=0 ALIGN=CENTER><TR>"+        
	"<TD WIDTH=300 HEIGHT=180 VALIGN=TOP ALIGN=LEFT>"+        
	"<FONT SIZE=1>"    
	var s2 = "<P><FONT FACE=VERDANA, ARIAL COLOR='CC0000'><B>"+label+"</B></FONT>"   
	var s3 = "<P ALIGN=JUSTIFY><FONT FACE=VERDANA, ARIAL COLOR='000000'>"+msg1+"<BR>"+"<BR>"+msg2+"<BR>"+"<BR>"+msg3+"<BR>"+"<BR>"+"</FONT>"   
	var s4 = "</TD></TR><TR>"+    
	"<TD ALIGN=CENTER>"+    
	"<FORM><INPUT TYPE='BUTTON' VALUE='Chiudi'" +                   
	"onClick='self.close()'>"  +    
	"</FORM></TD></TR></TABLE></BODY>"   
	popup = window.open("","popDialog","height=230,width=320,scrollbars=no")  
	popup.document.write(s1+s2+s3+s4)  
	popup.document.close()
}

function popHelp(){  
	PopIt('Trattamento dei dati personali', 'L&#39;utente si assume la responsabilit&agrave; della veridicit&agrave; e correttezza dei dati forniti. ',
          'Se l&#39;utente ritiene di non concordare con le finalit&agrave; e gli scopi dei servizi forniti da radioamicizia.com &egrave; invitato ad astenersi dalla compilazione del form. ',
          'I dati assunti verranno trattati escusivamente da radioamicizia.com e non ceduti a terzi. ')
}
