	function PrintFiche() {
		mypopup = window.open("http://www.maginea.com/fr/fr/fiche.html?imprimer=1&id=200604250032&cat=386","print","height=600,width=600,scrollbars=yes");
	}
	
	function getOffsetTop(oElement) 
	{
		if (oElement.offsetParent) {
			return oElement.offsetTop + getOffsetTop(oElement.offsetParent);
		} else if (oElement.y) {
			return oElement.y;
		}
		return 0;
	}
	
	function getOffsetLeft(oElement) 
	{
		if (oElement.offsetParent) {
			return oElement.offsetLeft + getOffsetLeft(oElement.offsetParent);
		} else if (oElement.x) {
			return oElement.x;
		}
		return 0;
	}
	
	function showLexique(oLink)
	{
		var hBulle = document.getElementById("lexibulle"); 
		if(oLink) {
			if(hBulle) {
				hBulle.innerHTML = oLink.childNodes[1].innerHTML;
				hBulle.style.top = (getOffsetTop(oLink) + 20) + 'px';
				hBulle.style.left = (getOffsetLeft(oLink)) + 'px';
				hBulle.style.display = "block";
			}
		} else {
			if(hBulle) {hBulle.style.display = "block"; }
		}
	}
	
	function closeLexique() 
	{
		var hBulle = document.getElementById("lexibulle");
		if(hBulle) {
			hBulle.style.display = "none";
		}
	}
	
	function displayMore(sEl, hDisplay)
	{
		
		var hEl = document.getElementById(sEl);
		if(hEl) {
			hEl.style.overflow = "visible";
			hEl.style.height = "auto";
		}
	
		if(hDisplay) {
			hDisplay.style.display = "none";
		}
		return false;
	}
	
	function checkIfMoreInfo()
	{
		var sEl = "autoExtendDesc";
		var sKnowMore = "txtDisplayMore";
		
		var hKnowMore = document.getElementById(sKnowMore);
		var hEl = document.getElementById(sEl);
		
		if(hEl && (hEl.scrollHeight <= 200)) {
			hEl.style.overflow = "visible";
			hEl.style.height = "auto";
			
			if(hKnowMore) {
				hKnowMore.style.display = "none";
			}
		} else {
			if(hKnowMore) {
				hKnowMore.style.display = "block";
			}
		}
	}
	
	function addLoadEvent(func) {
	  var oldonload = window.onload;
	  if (typeof window.onload != 'function') {
	    window.onload = func;
	  } else {
	    window.onload = function() {
	      if (oldonload) {
	        oldonload();
	      }
	      func();
	    }
	  }
	}
	addLoadEvent(checkIfMoreInfo);// JavaScript Document