// JavaScript Document

/***** ENVOYER A UN AMI ****************************************************************/
function mailpage()
{
 chaine_mail = "mailto:?subject=" + document.title;
 chaine_mail += "&body=Cher%20%5Bnom%5D%2C%0D%0A%0D%0A";
 chaine_mail += "Je%20recommande%20cette%20page%3A%20%22" + document.title;
 chaine_mail += "%22.%0D%0AConsultable%20%E0%20l%27adresse%3A%20" + window.location.href;
 chaine_mail += ".%0D%0A%0D%0ACordialement%2C%0D%0AXXX";
 
 window.location.href = chaine_mail;
}

/***** VERSION IMPRIMABLE **************************************************************/
function printer_friendly() {
  var hauteur=550;
  var largeur=650;
  var top=(screen.height-hauteur)/2;
  var left=(screen.width-largeur)/2;
  window.open(document.location ,"printable","top="+top+",left="+left+",width="+largeur+",height="+hauteur+",toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=1,resizable=0");
}

if (window.name=="printable") {
	document.write("<style>body{background-color:#FFFFFF}.hide{display:none}.show_block,.printscript,.printimage,.printfooter{display:block}.show_inline{display:inline}#auto{overflow:visible}</style>");
}

/***** POPUP CENTREE *******************************************************************/
function openPopupWin(URLtoOpen, windowName, hauteurPopup, largeurPopup) { 
 var hauteurPopup;
 var largeurPopup;
 var H = (screen.height - hauteurPopup) / 2;
 var L = (screen.width - largeurPopup) / 2;
 window.open(URLtoOpen,windowName,'height='+hauteurPopup+',width='+largeurPopup+',top='+H+',left='+L+',toolbar=no,scrollbars=yes,resizable=no');
}
