
if (parent.frames.length!=0) 
parent.location.href=location.href; 
// -->

<!-- Permuter une image
function Permut (flag,img) {
	if (document.images) {
		if (document.images[img].permloaded) {
			if (flag==1) document.images[img].src = document.images[img].perm.src
			else document.images[img].src = document.images[img].perm.oldsrc
		}
	}
}
function preloadPermut (img,adresse) {
	if (document.images) {
		img.onload = null;
		img.perm = new Image ();
		img.perm.oldsrc = img.src;
		img.perm.src = adresse;
		img.permloaded = true;
	}
}

function hide(id) {
 if (document.getElementById(id).style.display == "") {
  document.getElementById(id).style.display = "none";
 } else {
  document.getElementById(id).style.display = "";
 }
}

   function ouvre_popup(page,w,h) {
    LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;   
    TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
    param = 'menubar=no, status=no, scrollbars=no, menubar=no, height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition;
    window.open(page,"LecteurDaonet",param);
   }

// -->


