function validForm( frm ) { var frm = window.document.frm2; if( frm.p_firstname.value == "" ) { alert( "First name is required !" ); return false; } if( frm.p_lastname.value == "" ) { alert( "Last name is required !" ); return false; } if( frm.p_affiliation.value == "" ) { alert( "Affiliation is required !" ); return false; } if( frm.p_email.value == "" ) { alert( "E-mail address is required !" ); return false; } return true; } function showContact() { content = ""; c = window.document.frm.p_contact.value ; z = window.document.frm.p_zone.value ; if(c>0 && z>0) { resultat = result[z-1][c-1]; if( resultat[0] != "HIDDEN" ) { for(i=0; i
" ; content += "" + resultat[i][1] + "
" ; content += "" + resultat[i][2] + "
" ; content += "" + resultat[i][3] + "
" ; content += "" + resultat[i][4] + "

" ; } } else { content += "
"; content += ""; content += ""; content += ""; content += ""; content += ""; content += " "; content += " "; content += " "; content += " "; content += " "; content += "
 
"; content += " For contact details of the representative in your country, please enter your name and e-mail address and they will be sent to you by return
"; content += "
 
"; content += ""; content += " "; content += " "; content += " "; content += " "; content += " "; content += " "; content += " "; content += " "; content += " "; content += " "; content += " "; content += " "; content += " "; content += " "; content += " "; content += " "; content += " "; content += " "; content += " "; content += " "; content += " "; content += " "; content += " "; content += " "; content += " "; content += "
First name*
Last name*
Affiliation*
Product interest
E-mail address*
 
"; content += " "; content += "
 
"; content += "
"; } } else { alert( "You have to select both Contact type and zone" ); } if( document.getElementById ) document.getElementById("p_resultat").innerHTML = content ; else document.all("p_resultat").innerHTML = content; }