{ "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('sesso').value) == '' ) { alert('Questo campo è obbligatorio: Sesso'); return false; } // Gestione controllo sull'obbligatorieta' dei campi if( trim(document.getElementById('societa').value) == '' ) { alert('Questo campo è obbligatorio: Societa\'/Company'); return false; } // Gestione controllo sull'obbligatorieta' dei campi if( trim(document.getElementById('funzione').value) == '' ) { alert('Questo campo è obbligatorio: Funzione/Job title'); return false; } // Gestione controllo sull'obbligatorieta' dei campi if( trim(document.getElementById('attivita_svolta').value) == '' ) { alert('Questo campo è obbligatorio: Attivita\' svolta/Company\'s activity'); return false; } // Gestione controllo sull'obbligatorieta' dei campi if( trim(document.getElementById('indirizzo').value) == '' ) { alert('Questo campo è obbligatorio: Indirizzo Sede Operativa/Operational Headquarters Address'); 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('prov').value) == '' ) { alert('Questo campo è obbligatorio: Provincia/District'); return false; } // Gestione controllo sull'obbligatorieta' dei campi if( trim(document.getElementById('regione').value) == '' ) { alert('Questo campo è obbligatorio: Regione/Region'); return false; } // Gestione controllo sull'obbligatorieta' dei campi if( trim(document.getElementById('nazione').value) == '' ) { alert('Questo campo è obbligatorio: Stato/Country'); 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('telefono').value) == '' ) { alert('Questo campo è obbligatorio: Telefono/Telephone'); return false; } // Gestione controllo sui valori dei campi if( !CheckTelefono(document.getElementById('telefono'), false, true) ) 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'), false, false, '') ) return false; // Gestione controllo sull'obbligatorieta' dei campi if( trim(document.getElementById('piva').value) == '' ) { alert('Questo campo è obbligatorio: C.F. o P. Iva/VAT'); return false; } // Gestione controllo sui valori dei campi if( !CheckRipetuto(document.getElementById('piva'), false, true) ) return false; // Gestione controllo sull'obbligatorieta' dei campi if( trim(document.getElementById('consenso').value) == '' ) { alert('Questo campo è obbligatorio: Acconsento al trattamento dei dati forniti per l\'invio di materiale informativo sulle nostre iniziative, secondo quanto indicato nell\'Informativa Privacy'); return false; } // Per richiamare un oggetto memorizzato dal JSON usare nome_oggetto + "_save" js_formpdf_1644_10_1241_save.invio_mail(); }, "selectIndex": function(name, obj) { document.getElementById('txt_' + name + '_index').value = obj.selectedIndex; }, "invio_mail": function() { var strDati = ''; strDati = strDati + 'Oggetto: ' + document.getElementById('oggetto').value + '
'; strDati = strDati + 'Nome/Name: ' + document.getElementById('nome').value + '
'; strDati = strDati + 'Cognome/Surname: ' + document.getElementById('cognome').value + '
'; strDati = strDati + 'Sesso: ' + document.getElementById('sesso').value + '
'; strDati = strDati + 'Societa\'/Company: ' + document.getElementById('societa').value + '
'; strDati = strDati + 'Funzione/Job title: ' + document.getElementById('funzione').value + '
'; strDati = strDati + 'Compila in caso tu abbia scelto \'Altro\'/Fill in if you chose \'Other\': ' + document.getElementById('altro_funzione').value + '
'; strDati = strDati + 'Attivita\' svolta/Company\'s activity: ' + document.getElementById('attivita_svolta').value + '
'; strDati = strDati + 'Compila in caso tu abbia scelto \'Altro\'/Fill in if you chose \'Other\': ' + document.getElementById('altro_attivita').value + '
'; strDati = strDati + 'Indirizzo Sede Operativa/Operational Headquarters Address: ' + document.getElementById('indirizzo').value + '
'; strDati = strDati + 'Citta\'/City: ' + document.getElementById('citta').value + '
'; strDati = strDati + 'Provincia/District: ' + document.getElementById('prov').value + '
'; strDati = strDati + 'Regione/Region: ' + document.getElementById('regione').value + '
'; strDati = strDati + 'Stato/Country: ' + document.getElementById('nazione').value + '
'; strDati = strDati + 'CAP/Postal Code: ' + document.getElementById('cap').value + '
'; strDati = strDati + 'Telefono/Telephone: ' + document.getElementById('telefono').value + '
'; strDati = strDati + 'Fax: ' + document.getElementById('fax').value + '
'; strDati = strDati + 'Email: ' + document.getElementById('email').value + '
'; strDati = strDati + 'C.F. o P. Iva/VAT: ' + document.getElementById('piva').value + '
'; strDati = strDati + 'Acconsento al trattamento dei dati forniti per l\'invio di materiale informativo sulle nostre iniziative, secondo quanto indicato nell\'Informativa Privacy: ' + document.getElementById('consenso').value + '
'; strDati = strDati + ': ' + document.getElementById('acapo').value + '
'; strDati = strDati + 'Manifestazione/Exhibition: ' + document.getElementById('manifestazione').value + '
'; strDati = strDati + 'Sono interessato in qualità di: ' + document.getElementById('interessato').value + '
'; strDati = strDati + '
* Campi obbligatori / Required fields
'; 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 creare il pass per la fiera. Confermare l\'operazione?\nThe data will be used to create your entrance pass. Do you confirm?') ) { document.getElementById('frm_formpdf').submit(); } }, "check_reCaptcha": function() { loadJSON(document.getElementById('frm_formpdf').js_formpdf_1644_10_1241).controllo(); } }
Registrazione GRATUITA - FREE Online Registration
hidden
*Nome/Name
text
*Cognome/Surname
text
*Sesso
Maschio/Male
Femmina/Female
combo
*Societa'/Company
text
*Funzione/Job title
Amministratore di Sistema / System Administrator
Analista di Sistemi informatici / IT Systems Analyst
CISO (Chief Information Security Officier) / CISO (Chief Information Security Officer)
Consulente / Consultant
DPO (Data Protection Officier) / DPO (Data Protection Officer)
Esperto in Sicurezza Informatica / IT Security Expert
Funzionario Pubblica Amministrazione / Public Administration Official
Imprenditore / Company Owner
IT Manager / IT Manager
IT Outsourcing Manager / IT Outsourcing Manager
Legale Informatica Forense / Computer Forensics Expert
Libero Professionista / Freelancer
Managing Director
Responsabile Trattamento Dati Personali / Personal Data Processing Manager
Tecnico Hardware / Hardware Technician
Tecnico sistemi di rete / Network Systems Technician
Ufficiale Polizia Postale, Guardia di Finanza o Carabinieri / Cybercrime Police Officer
Giornalista / Journalist
Altro / Other
combo
Compila in caso tu abbia scelto 'Altro'/Fill in if you chose 'Other'
text
*Attivita' svolta/Company's activity
Fornitori di energia/ Energy suppliers
Operatori di trasmissione energetica / Energy transmission operators
Operatori telefonia mobile / Mobile network operators
Sviluppatori e gestori siti web / Website developers and managers
Gestori di rete sociale / Social network operators
Società di telecomunicazioni / Telecommunication companies
Fornitori di servizi media (tv-radio-web) / Media service providers (tv-radio-web)
Istituti bancari e assicurativi / Banks and insurance companies
Enti ministeriali e amministrativi pubblici / Ministerial and public administrative departments
Enti e associazioni per la cybersicurezza / Cybersecurity bodies and associations
Produttori di software / Software houses
Imprese strategiche settori hi-tech, aerospaziale e difesa / Hi-tech, aerospace and defense sector companies
Compagnie ferroviarie / railway companies
Società di trasporti terrestri, navali e aerei / Land, naval and air transport companies
Società di logistica / Logistics companies
Corrieri e spedizionieri / Couriers and forwarders
Imprese filiera alimentare e gdo / Food supply chain and large-scale retailers
Imprese manifatturiere / Manufacturing companies
Aziende settore luxury & fashion / Luxury & fashion sector companies
Catene alberghiere / Hotel chains
Società settore oil & gas / Oil & gas sector companies
Società di consulenza informatica / IT consulting companies
Porti e aeroporti / Ports and airports
Linee aeree / Airlines
Società di sicurezza informatica / IT security companies
Enti ospedalieri e strutture sanitarie / Hospital and health facilities
Piattaforme e società di bigliettazione / Ticketing platforms and companies
Societa settore automotive / Automotive sector companies
Fornitori di servizi IT e ict / IT and ict service providers
Produtttori di hardware / Hardware manufacturers
Fornitori di servizi cloud / Cloud service providers
Associazioni professionali e industriali / Trade and industry associations
Corpi militari / Military corps
Polizia postale e forze dell'ordine / Cybercrime police and law enforcement
Università e centri di ricerca / Universities and research centers
Stampa / Press
Altro / Other
combo
Compila in caso tu abbia scelto 'Altro'/Fill in if you chose 'Other'
text
*Indirizzo Sede Operativa/Operational Headquarters Address
text
*Citta'/City
comuni
*Provincia/District
province
*Regione/Region
regioni
*Stato/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
nazione
*CAP/Postal Code
cap
*Telefono/Telephone
text
Fax
text
*Email
text
*C.F. o P. Iva/VAT
text
*Acconsento al trattamento dei dati forniti per l'invio di materiale informativo sulle nostre iniziative, secondo quanto indicato nell'Informativa Privacy
Acconsento / I Agree
Non Acconsento / I Don't Agree
combo
hidden
hidden
hidden
progressivo
* Campi obbligatori / Required fields
Sono interessato in qualita' di visitatore.
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. / The data provided will be included in the data banks of Fiera CYBSEC EXPO and treated in compliance with privacy policy about protection of personal Data.