{ "controllo": function() { var arr_est = new Array(); arr_est[0] = '.jpg$'; arr_est[1] = '.jpeg$'; arr_est[2] = '.gif$'; arr_est[3] = '.tif$'; arr_est[4] = '.tiff$'; arr_est[5] = '.xls$'; arr_est[6] = '.xlsx$'; arr_est[7] = '.doc$'; arr_est[8] = '.docx$'; arr_est[9] = '.pdf$'; arr_est[10] = '.png$'; if(jQuery(".chkbox input")[0]) { var chk = 0; var inputs = jQuery(".chkbox input"); for(var i = 0; i < inputs.length; i++) { if(jQuery(inputs[i]).prop( "checked" )){ chk = 1; } } if(jQuery('#branc_altro').val() != '') chk = 1; if(chk == 0) { alert('form.chk.alert'); return false; } } var mail = jQuery('#email'); var mail_conf = jQuery('#mail_conf'); if(mail.length && mail_conf.length && mail.val() != mail_conf.val()){ alert('form_pdf.mail.error'); return false; } // Gestione controllo sull'obbligatorieta' dei campi if( trim(document.getElementById('nome').value) == '' ) { alert('Questo campo è obbligatorio: Nome / Name'); return false; } // Gestione controllo sull'obbligatorieta' dei campi if( trim(document.getElementById('cognome').value) == '' ) { alert('Questo campo è obbligatorio: Cognome / Surname'); return false; } // Gestione controllo sull'obbligatorieta' dei campi if( trim(document.getElementById('email').value) == '' ) { alert('Questo campo è obbligatorio: Email'); return false; } // Gestione controllo sui valori dei campi if( !checkEmail2(document.getElementById('email')) ) return false; // Gestione controllo sull'obbligatorieta' dei campi if( trim(document.getElementById('newsletter').value) == '' ) { alert('Questo campo è obbligatorio: Desideri ricevere la newsletter / You’d like to receive the newsletter'); return false; } // Gestione controllo sull'obbligatorieta' dei campi if( trim(document.getElementById('nazione').value) == '' ) { alert('Questo campo è obbligatorio: Paese / Country'); return false; } // Gestione controllo sull'obbligatorieta' dei campi if( trim(document.getElementById('settore').value) == '' ) { alert('Questo campo è obbligatorio: Settore / Industry field'); return false; } // Gestione controllo sull'obbligatorieta' dei campi if( trim(document.getElementById('attivita_svolta').value) == '' ) { alert('Questo campo è obbligatorio: Posizione / Position'); return false; } // Gestione controllo sull'obbligatorieta' dei campi if( trim(document.getElementById('societa').value) == '' ) { alert('Questo campo è obbligatorio: Nome Azienda / Company name'); return false; } // Gestione controllo sull'obbligatorieta' dei campi if( trim(document.getElementById('indirizzo').value) == '' ) { alert('Questo campo è obbligatorio: Indirizzo/Address'); return false; } // Gestione controllo sull'obbligatorieta' dei campi if( trim(document.getElementById('cap').value) == '' ) { alert('Questo campo è obbligatorio: CAP/Postal Code'); return false; } // Gestione controllo sull'obbligatorieta' dei campi if( trim(document.getElementById('citta').value) == '' ) { alert('Questo campo è obbligatorio: Citta\'/City'); return false; } // Gestione controllo sull'obbligatorieta' dei campi if( trim(document.getElementById('provincia').value) == '' ) { alert('Questo campo è obbligatorio: Provincia/District'); return false; } // Gestione controllo sull'obbligatorieta' dei campi if( trim(document.getElementById('consenso_dati').value) == '' ) { alert('Questo campo è obbligatorio: Acconsento al trattamento dei miei dati personali / I agree to the use of my personal information '); return false; } if( !document.getElementById('marketing_consent').checked ) document.getElementById('marketing_consent').value = ''; if( !document.getElementById('third_parties_gdpr').checked ) document.getElementById('third_parties_gdpr').value = ''; if( !document.getElementById('third_parties_other').checked ) document.getElementById('third_parties_other').value = ''; if( !document.getElementById('profilazione_gdpr').checked ) document.getElementById('profilazione_gdpr').value = ''; // Gestione controllo sull'obbligatorieta' dei campi if( trim(document.getElementById('tipo').value) == '' ) { alert('Questo campo è obbligatorio: Partecipazione all’evento in qualità di / participant in the event as'); return false; } // Gestione controllo sull'obbligatorieta' dei campi if( trim(document.getElementById('speaker_auth').value) == '' ) { alert('Questo campo è obbligatorio: Partecipando come relatore autorizzo la concessione della documentazione e delle presentazioni utilizzate durante l’evento / By participating as a speaker, I authorize the granting of documentation and presentations used during the event'); return false; } // Gestione controllo sull'obbligatorieta' dei campi if( !document.getElementById('privacy_pcexpo').checked ) { alert('Questo campo è obbligatorio: Ho preso visione dell\'Informativa Privacy di Piacenza Expo S.P.A. / I have read the Privacy Policy by Piacenza Expo S.P.A. Con la compilazione e l\'invio del presente Form acconsento al trattamento dei dati qui forniti per l\'invio di materiale informativo sulle iniziative della mostra come da informativa privacy. / Filling in and sending this form, I consent to the processing of the data provided here for the sending of informative material on the initiatives of the exhibition as per privacy policy.'); return false; } if( !document.getElementById('privacy_pcexpo').checked ) document.getElementById('privacy_pcexpo').value = ''; // Per richiamare un oggetto memorizzato dal JSON usare nome_oggetto + "_save" js_formpdf_1207_10_1229_save.invio_mail(); }, "selectIndex": function(name, obj) { document.getElementById('txt_' + name + '_index').value = obj.selectedIndex; }, "invio_mail": function() { var strDati = ''; strDati = strDati + ': ' + document.getElementById('oggetto').value + '
'; strDati = strDati + 'Nome / Name: ' + document.getElementById('nome').value + '
'; strDati = strDati + 'Cognome / Surname: ' + document.getElementById('cognome').value + '
'; strDati = strDati + 'Email: ' + document.getElementById('email').value + '
'; strDati = strDati + 'Desideri ricevere la newsletter / You’d like to receive the newsletter: ' + document.getElementById('newsletter').value + '
'; strDati = strDati + 'Paese / Country: ' + document.getElementById('nazione').value + '
'; strDati = strDati + 'Settore / Industry field: ' + document.getElementById('settore').value + '
'; strDati = strDati + 'Posizione / Position: ' + document.getElementById('attivita_svolta').value + '
'; strDati = strDati + 'Nome Azienda / Company name: ' + document.getElementById('societa').value + '
'; strDati = strDati + 'Indirizzo/Address: ' + document.getElementById('indirizzo').value + '
'; strDati = strDati + 'CAP/Postal Code: ' + document.getElementById('cap').value + '
'; strDati = strDati + 'Citta\'/City: ' + document.getElementById('citta').value + '
'; strDati = strDati + 'Provincia/District: ' + document.getElementById('provincia').value + '
'; strDati = strDati + 'Telefono / Phone: ' + document.getElementById('telefono').value + '
'; strDati = strDati + 'Acconsento al trattamento dei miei dati personali / I agree to the use of my personal information : ' + document.getElementById('consenso_dati').value + '
'; strDati = strDati + 'Il/la sottoscritto/a, letta la predetta informativa sul trattamento dei dati personali ai sensi degli artt. 13 e 14 del GDPR, per le finalità riportate di / The undersigned has read the aforementioned information on the processing of personal data pursuant to articles 13 and 14 of the GDPR, for the reported purposes of:
'; strDati = strDati + 'Consenso marketing / Marketing consent
1.\tpresto il consenso a che Circle S.p.A. e Piacenza Expo S.p.A. trattino i miei dati personali per finalità di marketing / I consent to that Circle S.p.A. and Piacenza Expo S.p.A. treat my personal data for marketing purposes: ' + document.getElementById('marketing_consent').value + '
'; strDati = strDati + 'Consenso società terze / Consent to third-parties
2.\tpresto il consenso a che Circle S.p.A. e Piacenza Expo S.p.A. comunichino i miei dati personali a società terze operanti nei settori indicati nell\'informativa precedente / I soon consent to that Circle S.p.A. and Piacenza Expo S.p.A. communicate my personal data to third-party companies operating in the sectors indicated in the previous disclosure: ' + document.getElementById('third_parties_gdpr').value + '
'; strDati = strDati + 'Consenso società terze per finalità diverse / Consenso società terze per finalità diverse
3. presto il consenso a che Circle S.p.A. e Piacenza Expo S.p.A. comunichino i miei dati personali a società terze (es.sponsor) per finalità diverse da quelle riguardanti i rapporti che intercorrono tra Circle SpA, Piacenza Expo S.p.A. e il loro cliente. / I soon consent to that Circle S.p.A. e Piacenza Expo S.p.A. communicate my personal data to third-party companies (eg sponsor) for purposes other than those concerning the relationships between Circle SpA, Piacenza Expo S.p.A. and their customer: ' + document.getElementById('third_parties_other').value + '
'; strDati = strDati + 'Consenso profilazione / Profiling consent
4. presto il consenso a che Circle S.p.A. e Piacenza Expo S.p.A. effettuino l\'attività di profilazione descritta nell\'informativa (
www.circletouch.eu/informazioni-sui-cookies
) che precede per le finalità ivi indicate / soon consent to that Circle S.p.A. and Piacenza Expo S.p.A.carry out the profiling activity described in the information (
www.circletouch.eu/informazioni-sui-cookies
) that precedes for the purposes indicated therein: ' + document.getElementById('profilazione_gdpr').value + '
'; strDati = strDati + 'Consenso per contenuti multimediali / Consent for multimedia content
5. Durante l’evento, personale riconosciuto potrà realizzare video e fotografie che verranno pubblicati in rete esclusivamente per finalità di marketing e comunicazione: è responsabilità propria non esporsi qualora non si desideri rientrare in tali contenuti multimediali. / During the event, recognized personnel will be able to make videos and photographs that will be published online solely for marketing and communication purposes: it is your responsibility not to expose yourself if you do not wish to be included in such multimedia content.
'; strDati = strDati + 'Partecipazione all’evento in qualità di / participant in the event as: ' + document.getElementById('tipo').value + '
'; strDati = strDati + 'Partecipando come relatore autorizzo la concessione della documentazione e delle presentazioni utilizzate durante l’evento / By participating as a speaker, I authorize the granting of documentation and presentations used during the event: ' + document.getElementById('speaker_auth').value + '
'; strDati = strDati + '
*Campi obbligatori / Mandatory fields
'; strDati = strDati + 'Ho preso visione dell\'Informativa Privacy di Piacenza Expo S.P.A. / I have read the Privacy Policy by Piacenza Expo S.P.A.
Con la compilazione e l\'invio del presente Form acconsento al trattamento dei dati qui forniti per l\'invio di materiale informativo sulle iniziative della mostra come da informativa privacy. / Filling in and sending this form, I consent to the processing of the data provided here for the sending of informative material on the initiatives of the exhibition as per privacy policy.
: ' + document.getElementById('privacy_pcexpo').value + '
'; document.getElementById('dati').value = strDati; if( !document.getElementById('privacy').checked ) { alert('Bisogna accettare le clausole relative al trattamento dei dati personali.\nWe must accept the terms governing the processing of personal data.'); return; } if( confirm('I dati saranno usati per la registrazione. Confermare l\'operazione?\nThe data will be used for the registration. Do you confirm?') ) { document.getElementById('frm_formpdf').submit(); } }, "check_reCaptcha": function() { grecaptcha.ready(function() { grecaptcha.execute('6LdxBY8bAAAAACwJQ0eMO4a1j3YsR-kMQd1ztgn4', {action: 'submit'}).then(function(token) { // Add your logic to submit to your backend server here. document.getElementById('g-recaptcha-response').value = token; loadJSON(document.getElementById('frm_formpdf').js_formpdf_1207_10_1229).controllo(); }); }); } }
Bilog - Registrazione / Registration
*Nome / Name
*Cognome / Surname
*Email
*Desideri ricevere la newsletter / You’d like to receive the newsletter
Si, desidero ricevere la newletter e rimanere aggiornato sui vostri contenuti / Yes, I’d like to receive the newsletter and keep in contact with you
No, non desidero ricevere la newsletter / No, I don’t want to receive the newsletter
*Paese / Country
AFGHANISTAN
ALAND ISLANDS
ALBANIA
ALGERIA
AMERICAN SAMOA
ANDORRA
ANGOLA
ANGUILLA
ANTARCTICA
ANTIGUA AND BARBUDA
ARGENTINA
ARMENIA
ARUBA
AUSTRALIA
AUSTRIA
AZERBAIJAN
BAHAMAS
BAHRAIN
BANGLADESH
BARBADOS
BELARUS
BELGIUM
BELIZE
BENIN
BERMUDA
BHUTAN
BOLIVIA
BOSNIA AND HERZEGOVINA
BOTSWANA
BOUVET ISLAND
BRAZIL
BRITISH INDIAN OCEAN TERRITORY
BRUNEI DARUSSALAM
BULGARIA
BURKINA FASO
BURUNDI
CAMBODIA
CAMEROON
CANADA
CAPE VERDE
CAYMAN ISLANDS
CENTRAL AFRICAN REPUBLIC
CHAD
CHILE
CHINA
CHRISTMAS ISLAND
COCOS ISLANDS
COLOMBIA
COMOROS
CONGO
CONGO THE DEMOCRATIC REPUBLIC OF THE
COOK ISLANDS
COSTA RICA
COTE D'IVOIRE
CROATIA
CUBA
CYPRUS
CZECH REPUBLIC
DENMARK
DJIBOUTI
DOMINICA
DOMINICAN REPUBLIC
ECUADOR
EGYPT
EL SALVADOR
EQUATORIAL GUINEA
ERITREA
ESTONIA
ETHIOPIA
FALKLAND ISLANDS
FAROE ISLANDS
FIJI
FINLAND
FRANCE
FRENCH GUIANA
FRENCH POLYNESIA
FRENCH SOUTHERN TERRITORIES
GABON
GAMBIA
GEORGIA
GERMANY
GHANA
GIBRALTAR
GREECE
GREENLAND
GRENADA
GUADELOUPE
GUAM
GUATEMALA
GUERNSEY
GUINEA
GUINEA-BISSAU
GUYANA
HAITI
HEARD ISLAND AND MCDONALD ISLANDS
HONDURAS
HONG KONG
HUNGARY
ICELAND
INDIA
INDONESIA
IRAN
IRAQ
IRELAND
ISLE OF MAN
ISRAEL
ITALY
JAMAICA
JAPAN
JERSEY
JORDAN
KAZAKHSTAN
KENYA
KIRIBATI
KOREA NORTH
KOREA SOUTH
KUWAIT
KYRGYZSTAN
LAO
LATVIA
LEBANON
LESOTHO
LIBERIA
LIBYAN ARAB JAMAHIRIYA
LIECHTENSTEIN
LITHUANIA
LUXEMBOURG
MACAO
MACEDONIA
MADAGASCAR
MALAWI
MALAYSIA
MALDIVES
MALI
MALTA
MARSHALL ISLANDS
MARTINIQUE
MAURITANIA
MAURITIUS
MAYOTTE
MEXICO
MICRONESIA
MOLDOVA
MONACO
MONGOLIA
MONTENEGRO
MONTSERRAT
MOROCCO
MOZAMBIQUE
MYANMAR
NAMIBIA
NAURU
NEPAL
NETHERLANDS
NETHERLANDS ANTILLES
NEW CALEDONIA
NEW ZEALAND
NICARAGUA
NIGER
NIGERIA
NIUE
NORFOLK ISLAND
NORTHERN MARIANA ISLANDS
NORWAY
OMAN
PAKISTAN
PALAU
PALESTINIAN
PANAMA
PAPUA NEW GUINEA
PARAGUAY
PERU
PHILIPPINES
PITCAIRN
POLAND
PORTUGAL
PUERTO RICO
QATAR
REUNION
ROMANIA
RUSSIAN FEDERATION
RWANDA
SAINT HELENA
SAINT KITTS AND NEVIS
SAINT LUCIA
SAINT PIERRE AND MIQUELON
SAINT VINCENT AND THE GRENADINES
SAMOA
SAN MARINO
SAO TOME AND PRINCIPE
SAUDI ARABIA
SENEGAL
SERBIA
SEYCHELLES
SIERRA LEONE
SINGAPORE
SLOVAKIA
SLOVENIA
SOLOMON ISLANDS
SOMALIA
SOUTH AFRICA
SOUTH GEORGIA AND THE SOUTH SANDWICH ISLANDS
SPAIN
SRI LANKA
SUDAN
SURINAME
SVALBARD AND JAN MAYEN
SWAZILAND
SWEDEN
SWITZERLAND
SYRIAN ARAB REPUBLIC
TAIWAN
TAJIKISTAN
TANZANIA
THAILAND
TIMOR-LESTE
TOGO
TOKELAU
TONGA
TRINIDAD AND TOBAGO
TUNISIA
TURKEY
TURKMENISTAN
TURKS AND CAICOS ISLANDS
TUVALU
UGANDA
UKRAINE
UNITED ARAB EMIRATES
UNITED KINGDOM
UNITED STATES
UNITED STATES MINOR OUTLYING ISLANDS
URUGUAY
UZBEKISTAN
VANUATU
VATICAN CITY
VENEZUELA
VIETNAM
VIRGIN ISLANDS BRITISH
VIRGIN ISLANDS U.S.
WALLIS AND FUTUNA
WESTERN SAHARA
YEMEN
ZAMBIA
ZIMBABWE
*Settore / Industry field
*Posizione / Position
*Nome Azienda / Company name
*Indirizzo/Address
*CAP/Postal Code
*Citta'/City
*Provincia/District
Estero
Agrigento
Alessandria
Ancona
Aosta
Arezzo
Ascoli Piceno
Asti
Avellino
Bari
Barletta
Belluno
Benevento
Bergamo
Biella
Bologna
Bolzano
Brescia
Brindisi
Cagliari
Caltanisetta
Campobasso
Carbonia Iglesias
Caserta
Catania
Catanzaro
Chieti
Como
Cosenza
Cremona
Crotone
Cuneo
Enna
Fermo
Ferrara
Firenze
Foggia
Forlì-Cesena
Frosinone
Genova
Gorizia
Grosseto
Imperia
Isernia
La Spezia
L'Aquila
Latina
Lecce
Lecco
Livorno
Lodi
Lucca
Macerata
Mantova
Massa-Carrara
Matera
Medio Campidano
Messina
Milano
Modena
Monza-Brianza
Napoli
Novara
Nuoro
Ogliastra
Olbia Tempio
Oristano
Padova
Palermo
Parma
Pavia
Perugia
Pesaro Urbino
Pescara
Piacenza
Pisa
Pistoia
Pordenone
Potenza
Prato
Ragusa
Ravenna
Reggio Calabria
Reggio Emilia
Rieti
Rimini
Roma
Rovigo
Salerno
Sassari
Savona
Siena
Siracusa
Sondrio
Taranto
Teramo
Terni
Torino
Trapani
Trento
Treviso
Trieste
Udine
Varese
Venezia
Verbania
Vercelli
Verona
Vibo Valentia
Vicenza
Viterbo
Telefono / Phone
*Acconsento al trattamento dei miei dati personali / I agree to the use of my personal information
Yes
No
Il/la sottoscritto/a, letta la predetta informativa sul trattamento dei dati personali ai sensi degli artt. 13 e 14 del GDPR, per le finalità riportate di / The undersigned has read the aforementioned information on the processing of personal data pursuant to articles 13 and 14 of the GDPR, for the reported purposes of:
Consenso marketing / Marketing consent
1. presto il consenso a che Circle S.p.A. e Piacenza Expo S.p.A. trattino i miei dati personali per finalità di marketing / I consent to that Circle S.p.A. and Piacenza Expo S.p.A. treat my personal data for marketing purposes
Consenso società terze / Consent to third-parties
2. presto il consenso a che Circle S.p.A. e Piacenza Expo S.p.A. comunichino i miei dati personali a società terze operanti nei settori indicati nell'informativa precedente / I soon consent to that Circle S.p.A. and Piacenza Expo S.p.A. communicate my personal data to third-party companies operating in the sectors indicated in the previous disclosure
Consenso società terze per finalità diverse / Consenso società terze per finalità diverse
3. presto il consenso a che Circle S.p.A. e Piacenza Expo S.p.A. comunichino i miei dati personali a società terze (es.sponsor) per finalità diverse da quelle riguardanti i rapporti che intercorrono tra Circle SpA, Piacenza Expo S.p.A. e il loro cliente. / I soon consent to that Circle S.p.A. e Piacenza Expo S.p.A. communicate my personal data to third-party companies (eg sponsor) for purposes other than those concerning the relationships between Circle SpA, Piacenza Expo S.p.A. and their customer
Consenso profilazione / Profiling consent
4. presto il consenso a che Circle S.p.A. e Piacenza Expo S.p.A. effettuino l'attività di profilazione descritta nell'informativa (
www.circletouch.eu/informazioni-sui-cookies
) che precede per le finalità ivi indicate / soon consent to that Circle S.p.A. and Piacenza Expo S.p.A.carry out the profiling activity described in the information (
www.circletouch.eu/informazioni-sui-cookies
) that precedes for the purposes indicated therein
Consenso per contenuti multimediali / Consent for multimedia content
5. Durante l’evento, personale riconosciuto potrà realizzare video e fotografie che verranno pubblicati in rete esclusivamente per finalità di marketing e comunicazione: è responsabilità propria non esporsi qualora non si desideri rientrare in tali contenuti multimediali. / During the event, recognized personnel will be able to make videos and photographs that will be published online solely for marketing and communication purposes: it is your responsibility not to expose yourself if you do not wish to be included in such multimedia content.
*Partecipazione all’evento in qualità di / participant in the event as
visitatore / visitor
relatore / speaker
*Partecipando come relatore autorizzo la concessione della documentazione e delle presentazioni utilizzate durante l’evento / By participating as a speaker, I authorize the granting of documentation and presentations used during the event
Sì / Yes
No
*Campi obbligatori / Mandatory fields
*Ho preso visione dell'Informativa Privacy di Piacenza Expo S.P.A. / I have read the Privacy Policy by Piacenza Expo S.P.A.
Con la compilazione e l'invio del presente Form acconsento al trattamento dei dati qui forniti per l'invio di materiale informativo sulle iniziative della mostra come da informativa privacy. / Filling in and sending this form, I consent to the processing of the data provided here for the sending of informative material on the initiatives of the exhibition as per privacy policy.
*Ho preso visione dell'Informativa Privacy di CIRCLE S.p.A. / I have read the Privacy Policy by CIRCLE S.p.A..
Con la compilazione e l'invio del presente Form acconsento al trattamento dei dati qui forniti per l'invio di materiale informativo sulle iniziative della mostra come da informativa privacy. / Filling in and sending this form, I consent to the processing of the data provided here for the sending of informative material on the initiatives of the exhibition as per privacy policy.