function ffy_content_opportunita_lavoro_check_form( JS_VAR_msg01, JS_VAR_msg02 )
{
if ( document.form01.nome.value == '' ||
     document.form01.cognome.value == '' ||
     document.form01.telefono.value == '' ||
     document.form01.provincia.value == '' )
   {
    alert( JS_VAR_msg01 )	;
    return 0 ;
	 } 
else if (  document.form01.privacy.checked == false )
   {
    alert( JS_VAR_msg02 )	;
    return 0 ;
	 } 		 
else { return 1 ; }	
	
}
