function back_mom(index, index_chemin, page)
{
var adresse = parent.location.href;
//alert("adresse = " + adresse);
adresse = adresse.split('?')
//alert("adresse.split 0 = " + adresse[0]);
var m = new RegExp("[A-Z0-9_]*.[HP][TH][MP][L]?$","i");
var mot = m.exec(adresse[0]);
//alert(mot);
	  if((mot != index) && (mot != null))
	  {//alert("mot = " + mot);
	    window.location.href = index_chemin +"?" + page;
	    //window.hoofd.location.href = page;	  
	  }	 
	
	  if(screen.width <= 800)
	  {
	     window.trait1.width=756;
	  }	
	  else
	  {
		 window.trait1.width=775;
	  }		
}


function back_mom2()
{
 
var adresse2 = parent.location.href;
adresse2 = adresse2.split('?')
//alert("adresse redirection = " + adresse2[1]);
//alert("adresse . longueur = " + adresse2.length);
//alert(adresse2[1]);
  if(adresse2.length > 1)
  {
   parent.hoofd.location.href = adresse2[1];
  }	
}