{ "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_1029_10_1173_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 + '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 + 'Sono interessato in qualità di: ' + document.getElementById('interessato').value + '
'; strDati = strDati + 'Manifestazione/Exhibition: ' + document.getElementById('manifestazione').value + '
'; strDati = strDati + ': ' + document.getElementById('acapo').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() { grecaptcha.ready(function() { grecaptcha.execute('6LcIpncbAAAAAH9YIXuy_K-HKpfLO3P63qHv8X1e', {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_1029_10_1173).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
CEO/President/Company owner
Managing Director
R&D/Technical
Engineering
Commercial/sales/business development
Sustainability
Marketing
Project management
Procurement/supply chain
Other (please specify)
combo
Compila in caso tu abbia scelto 'Altro'/Fill in if you chose 'Other'
text
*Attivita' svolta/Company's activity
Aeroporti/Airports
Affissione e cartellonistica/Posting and signage
Allestimento e vendita veicoli industriali/Truck sales and equipment
Altro settore/Other sector
Assistenza tecnica e riparazione/Service and assistance
Autorità ed enti portuali/Port authorities
Autotrasporto/Truck transport
Cantieristica navale e offshore/Shipbuilding and offshore yards
Centri logistici e intermodali/Logistics and intermodal centers
Certificazione e sicurezza/Certification and safety
Commercio acciai e metalli/Steels and metals trade
Commercio legname/Timber trade
Componenti e ricambi – produzione/Components, spare parts - production
Componenti e ricambi - vendita/Components, spare parts - sale
Consulenza tecnica e progettazione/Engineering and consulting
Costruzione macchine e attrezzature/Equipment manufacturers
Costruzioni generali, imprese edili/Construction, building contractors
Costruzioni metalmeccaniche/Mechanical engineering
Carpenteria metallica/Metal fabrication
Demolizioni auto e veicoli/Cars and vehicle demolition
Distributori, agenti, concessionari/Distributors, Agents, Dealers
Enti ferroviari/Railway authorities
Formazione/Training
Forze armate/Army, navy, air forces
Gestione impianti eolici/Wind farm contractors
Grande distribuzione e centri commerciali/Retail and shopping centers
Impiantistica e manutenzione industriale/Plant and industrial maintenance
Sollevamento e trasporti eccezionali/Lifting, heavy transport contractors
Installazione linee elettriche e telecomunicazioni/Electrical lines, telecommunications
Lattoneria/Roofing contractors
Lavorazione e commercio marmi e graniti/Marble and granite trade
Manutenzione del verde, florovivaismo/Green maintenance and tree care
Montaggi industriali/Industrial plant construction
Municipalità, aziende speciali/Municipalities, Utility companies
Noleggio carrelli elevatori, sollevatori/Forklifts, telehandlers - rental
Noleggio di autogru, piattaforme aeree/Cranes, aerial platforms - rental
Noleggio macchine e attrezzature da cantiere/Rental of construction equipment
Pitturazione e manutenzione navale/Painting and ship maintenance
Prefabbricazione in cls e montaggio prefabbricati/Precast concrete
Pulizia industriale/Industrial cleaning
Raccolta e riciclaggio rifiuti e rottami/Waste and scrap collecting and recycling
Soccorso stradale/Breakdown assistance
Spedizionieri/Shippers
Terminalisti portuali/Port Terminal Operators
Traslochi/Moving contractors
Università, ente ricerca/Universities, research institution
Vigili del fuoco, protezione civile/Firefighters, civil defense
combo
*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
progressivo
hidden
hidden
hidden
* Campi obbligatori / Required fields
Sono interessato in qualita' di visitatore/I am interested as a visitor/exhibitor..
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 GIS EXPO and treated in compliance with privacy policy about protection of personal Data.