<!--
function mailok() {
if(!document.contact.email.value){
        alert("Veuillez indiquer votre e-mail !");
	document.contact.cc.checked=0;
        document.contact.email.focus();}
else 
if(document.contact.email.value.indexOf("@") ==-1||document.contact.email.value.indexOf(".")==-1){
        alert("Votre e-mail semble erronée !");
	document.contact.cc.checked=0;
        document.contact.email.focus();}
}

function choix2(koi){
document.contact.opt.selectedIndex=0;
if (koi=="site"){
document.contact.opt.options.length=4;
document.contact.opt.options[0].text = "Options - sites";
document.contact.opt.options[1].value="sitei"; 
document.contact.opt.options[1].text="Site identité";        
document.contact.opt.options[2].value="sitec"; 
document.contact.opt.options[2].text="Site communication";        
document.contact.opt.options[3].value="sitea"; 
document.contact.opt.options[3].text="Site action"; 
}
if (koi=="extra"){
document.contact.opt.options.length=9;
document.contact.opt.options[0].text = "Options - extras";
document.contact.opt.options[1].value="cd"; 
document.contact.opt.options[1].text="Cd-rom/cd-carte";        
document.contact.opt.options[2].value="heb"; 
document.contact.opt.options[2].text="Hébergement";        
document.contact.opt.options[3].value="log"; 
document.contact.opt.options[3].text="Logiciel"; 
document.contact.opt.options[4].value="main"; 
document.contact.opt.options[4].text="Maintenance"; 
document.contact.opt.options[5].value="dom"; 
document.contact.opt.options[5].text="Nom de domaine";        
document.contact.opt.options[6].value="ref"; 
document.contact.opt.options[6].text="Référencement";        
document.contact.opt.options[7].value="rem"; 
document.contact.opt.options[7].text="Remodelage"; 
document.contact.opt.options[8].value="trad"; 
document.contact.opt.options[8].text="Traduction"; 
}
if (koi=="script"){
document.contact.opt.options.length=5;
document.contact.opt.options[0].text = "Options - scripts";
document.contact.opt.options[1].value="dhtml"; 
document.contact.opt.options[1].text="DHTML";        
document.contact.opt.options[2].value="js"; 
document.contact.opt.options[2].text="JavaScript";        
document.contact.opt.options[3].value="sql"; 
document.contact.opt.options[3].text="MySql"; 
document.contact.opt.options[4].value="php"; 
document.contact.opt.options[4].text="PHP"; 
}
if (koi=="ha"){
document.contact.opt.options.length=5;
document.contact.opt.options[0].text = "Options - matériel/logiciels";
document.contact.opt.options[1].value="ecran"; 
document.contact.opt.options[1].text="Écrans"; 
document.contact.opt.options[2].value="logi"; 
document.contact.opt.options[2].text="Logiciels";        
document.contact.opt.options[3].value="ordi"; 
document.contact.opt.options[3].text="Ordinateurs";        
document.contact.opt.options[4].value="scan"; 
document.contact.opt.options[4].text="Scanners"; 
}

}

function choix2nul() {
document.contact.opt.options.length=2;
document.contact.opt.options[0].text = "Options";
document.contact.opt.options[1].text = "Choisissez d'abord une rubrique";
}
window.onload=choix2nul
//-->