function confirmation(nom,adresse) {
if (confirm('Etes vous sur de vouloir supprimer '+nom+'?'))
	 document.location.href=adresse;
}

function formatpublic(texte) {
texte.value=texte.value.toLowerCase();
chainemaj=texte.value;
chainemaj=chainemaj.replace(/à/g,"a");
chainemaj=chainemaj.replace(/ä/g,"a");
chainemaj=chainemaj.replace(/â/g,"a");
chainemaj=chainemaj.replace(/é/g,"e");
chainemaj=chainemaj.replace(/è/g,"e");
chainemaj=chainemaj.replace(/ë/g,"e");
chainemaj=chainemaj.replace(/ê/g,"e");
chainemaj=chainemaj.replace(/î/g,"i");
chainemaj=chainemaj.replace(/ï/g,"i");
chainemaj=chainemaj.replace(/ö/g,"o");
chainemaj=chainemaj.replace(/ô/g,"o");
chainemaj=chainemaj.replace(/ü/g,"u");
chainemaj=chainemaj.replace(/û/g,"u");
chainemaj=chainemaj.replace(/ù/g,"u");
chainemaj=chainemaj.replace(/ç/g,"c");

document.forms['publicForm'].elements['lmaj'].value=chainemaj.toUpperCase();
}

function seekVille(){
window.open('./popup_ville.php5',null,'width=700,height=400,top=10, left=10, status=no, directories=no, toolbar=no, location=no, menubar=no, scrollbars=yes, resizable=yes');
}

function showLogo(idreseau){
window.open('../logo.php5?id_reseau='+idreseau,null,'width=300,height=300,top=10, left=10, status=no, directories=no, toolbar=no, location=no, menubar=no, scrollbars=yes, resizable=yes');
}

function chargerVille(id,ville){
window.opener.document.forms[0].elements['id_ville'].value=id;
window.opener.document.forms[0].elements['ville'].value=ville;
self.close();
}

function rafraichirVille() {
	document.location.href='./popup_ville.php5?id_zone='+document.forms['selectzone'].elements['listezone'].value;
}


