////////////////////////////////////////////////////////////////////////////
///////////////////////////MENU DEROULANT DYNAMIQUE/////////////////////////
function change() 
	{
	i = document.form.menu.selectedIndex;
	if (i == 0) return;
	url = document.form.menu.options[i].value;
	self.location.href = url;
	}
////////////////////////////////////////////////////////////////////////////
////////////////////////////MESSAGE BARRE D'ETAT////////////////////////////
var mess = "--- Partout en france, des experts certifiés en diagnostics immobilier : état parasitaire, recherche et Diagnostic Amiante, Termites, Plomb, Loi Carrez, Diagnostic de Performance Energétique DPE, Etat des Risques Naturels et Technologiques ERNT, Diagnostic Gaz, Diagnostic Electrique, Diagnostic Thermique, Sécurité Piscine, Prêt à taux zéro... DEVIS GRATUIT---";
var i = 0;

function defilmess()
  {
  window.status = mess.substring(i, mess.length) + mess.substring(0, i);
  i++;
  if (i > mess.length) i = 0;
  window.setTimeout("defilmess()",200);
  }
defilmess();
////////////////////////////////////////////////////////////////////////////
///////////////////////////COULEUR VERIF FORMULAIRE/////////////////////////
function couleur(obj){obj.style.backgroundColor = "#E7E7E7";}
////////////////////////////////////////////////////////////////////////////
///////////////////////////ONMOUSEOVER CELLULE TABLEAU//////////////////////
function NavRollOver(bck){if(!bck.contains(event.fromElement)){bck.bgColor="#FF6600";}}
function NavRollOut(bck){if(!bck.contains(event.toElement)){bck.bgColor="#FFFFFF";}}
////////////////////////////////////////////////////////////////////////////
////////////////////////////////POP UP CENTREE//////////////////////////////
var win = null;
function NewWindow(mypage,myname,w,h,scroll)
	{
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	settings =
	'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
	win = window.open(mypage,myname,settings)
	}
////////////////////////////////////////////////////////////////////////////
////////////////////////////////AJOUT FAVORIS///////////////////////////////
function favori(titre,lien)
	{
  if (window.sidebar){window.sidebar.addPanel(titre, lien,"");}
  else if( document.all ){window.external.AddFavorite(lien, titre);}
  else{return true;}
  }
////////////////////////////////////////////////////////////////////////////
////////////////////////////COPIE DONNEES FORMULAIRE////////////////////////
function CopieNom(f)
	{
  if(f.validation_nom.checked == true)
  	{
    f.nom_facture.value = f.nom.value;
    f.tel_facture.value = f.tel.value;
    f.eml_facture.value = f.eml.value;
    f.civilite_facture.value = f.civilite.value;
    }
  }
function CopieAdresse(f)
	{
  if(f.validation_adresse.checked == true)
  	{
    f.adr_facture1.value = f.adr_bien1.value;
    f.adr_facture2.value = f.adr_bien2.value;
    f.code_facture.value = f.code_bien.value;
    f.ville_facture.value = f.ville_bien.value;
    }
  }