// JavaScript Document

function imprime_sel_obj(objet) 

{var fen = window.open('', 'ZoneImpr', 'height=800, width=990, toolbar=0, menubar=0, scrollbars=1, resizable=1, status=0, location=0, left=10, top=10');
fen.document.body.style.font = "18px Georgia";
fen.document.body.style.color = '#000050';
fen.document.body.style.backgroundColor = '#FFFFFF';
fen.document.body.style.padding = "10px";
fen.document.title = document.getElementById(objet).options[document.getElementById(objet).selectedIndex].title;
var browserName=navigator.appName;
var texte=document.getElementById(objet).options[document.getElementById(objet).selectedIndex].value;
fen.document.body.innerHTML="<div style='text-align:justify; font-family: Georgia; font-size:18px'>"+texte+"</div>";
if (browserName=="Opera") {fen.document.body.innerHTML+="<br><br><div align=\"center\"><a title=\"Impression\" target=\"_self\" onclick=\"window.print();\" style=\"cursor:pointer\">Imprimer<img src=\"image/clipart/logo_imprim.gif\" alt=\"Impression\" height=\"25\" /></a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a title=\"Fermeture\" target=\"_self\" onclick=\"window.close();\" style=\"cursor:pointer\">Fermer la fen&ecirc;tre</a>";} else {fen.window.print(); fen.window.close();}

return true;
} 

function imprimes_sel_obj(objet) 

{var fen = window.open('', 'ZoneImpr', 'height=800, width=990, toolbar=0, menubar=0, scrollbars=1, resizable=1, status=0, location=0, left=10, top=10');
fen.document.body.style.font = "18px Georgia";
fen.document.body.style.color = '#000050';
fen.document.body.style.backgroundColor = '#FFFFFF';
fen.document.body.style.padding = "10px";
var titre = document.getElementById(objet).options[document.getElementById(objet).selectedIndex].title;
fen.document.title = titre;
var browserName=navigator.appName;
var texte=document.getElementById(objet).options[document.getElementById(objet).selectedIndex].value;
fen.document.body.innerHTML="<div style='text-align:justify; font-family: Georgia; font-size:18px'><div align='center'>"+titre+"</div><br />"+texte+"</div>";
if (browserName=="Opera") {fen.document.body.innerHTML+="<br><br><div align=\"center\"><a title=\"Impression\" target=\"_self\" onclick=\"window.print();\" style=\"cursor:pointer\">Imprimer<img src=\"image/clipart/logo_imprim.gif\" alt=\"Impression\" height=\"25\" /></a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a title=\"Fermeture\" target=\"_self\" onclick=\"window.close();\" style=\"cursor:pointer\">Fermer la fen&ecirc;tre</a>";} else {fen.window.print(); fen.window.close();}

return true;
} 
