// JavaScript Document
	
  	function mailpage(){
	  chaine_mail = "mailto:?subject= " + document.title;
	  chaine_mail += "&body= I recommend this page : " + document.title;
	  chaine_mail += ". Accessible at the following address  : " + location.href; location.href = chaine_mail;
	}
	 
	function jumpto(x){
	if (document.form1.jumpmenu.value != "null") {
		document.location.href = x
		}
	}
	
	
