// Loading
var random_number="ord="+(Math.round(Math.random()*10000000000))+"?";
var encours = new Image(); encours.src = "http://www.cotebasque.com/images/n_txt_top/loading.gif"; encours.width="227"; encours.height="44";
var fin = new Image(); fin.src = "http://www.cotebasque.com/images/n_txt_top/bienvenue.gif"; fin.width="265"; fin.height="44"; 
function bascule(from, to) { document[from].src = to.src; }

// Date
today=new Date();
annee=today.getFullYear();

// Open Page (PA)
function openPage(URL) { aWindow=window.open(URL,"Large","toolbar=no,width=500,height=500,status=no,scrollbars=yes,resize=no,menubars=no"); }

// Open Page 2 (Paramétrable)
function openPage2(page,nom,option) { window.open(page,nom,option); } 

// Validation Annonceurs
function valider(frm){
  if(frm.elements['Nom','Email','Message'].value != "") {
    return true;
  }
  else {
    alert("Pour faciliter le traitement de votre demande, nous vous prions de bien vouloir renseigner chacune des zones du formulaire.");
    return false;
  }
}

// Mailblog
function fixmail(linkobject,address,separator,dot,at){
	tab = address.split(separator);
	real = tab[0];
	for(index = 1; index < tab.length; index++){
		if(index % 2 == 1){
			if(tab[index] == dot){
				real += ".";
			}
			else if( tab[index] == at){
				real += "@";
			}
		}
		else{
			real += tab[index];
		}
	}
		
	linkobject.href = "mailto:" + real;
}