function printWindow(){
   bV = parseInt(navigator.appVersion)
   if (bV >= 4) window.print()
}

function mailpage()
{
mail_str = "mailto:?subject=Page Internet : " + document.title;
mail_str += "&body=Ce document est intéressant : " + document.title;
mail_str += ". Il est disponible à l'adresse: " + location.href;
location.href = mail_str;
}


