// PYRAMIQ S.A. - JLE - 22/09/2003

var printWin;

function savePage(){

	var oElem;
//	var hElem = document.all.item("printable");
	var hElem = document.getElementById("content");
	var tElem =document.getElementById("printTitre");
	if((hElem != null)){
		var strDeb='<html><head>';
		strDeb+='<meta http-equiv="content-type" content="text/html;charset=ISO-8859-1">';
		strDeb+='<title>Barreau de Liège</title>';
		strDeb+='<link href="../medias/utils/style.css" rel="stylesheet" type="text/css" />';
		strDeb+='<style type="text/css">';
		strDeb+='body,html{padding-right: 0px;padding-left: 0px;padding-bottom: 0px;margin: 0px;padding-top: 0px;font-family:Arial, Helvetica, sans-serif;font-size:12px;}';
		strDeb+='h1 {color:#B8D600; padding:0; margin:20px 0px 20px 240px; font-size:25px; font-weight:normal}';
		strDeb+='h2 {color:#003D8F; font-size:16px;}';
		strDeb+='h3 {color:#003D8F; font-size:13px; font-weight:normal}';
		strDeb+='.puceverte {list-style-image: url("../images/li.gif"); margin:0 0 0 15px;}';
		strDeb+='.inputtexte{border: transparent 0px none; border-left: #0061ad 1px solid; height: 19px; width:471px; background: no-repeat url("../images/field.gif") top right; color: #0061ad;}';
		strDeb+='.button  {border: transparent 0px none; background: url("../images/button.gif") top right; color: #ffffff; font-weight: bold; }';
		strDeb+='.ligneverte{border-top: #b1d006 1px solid;border-bottom: white 1px solid;}';
		strDeb+='.lignebleue{border-top:1px solid #bfdaeb;border-bottom: white 1px solid;}';
		strDeb+='div#footer{border-top:1px solid #bfdaeb; text-align:center; margin:25px 0px 20px 0px; padding:10px 0px 0px 0px; font-size:11px}';
		strDeb+='span.bleufoot{color:#0065B1}';
		strDeb+='div#footer a{color:#0065B1; text-decoration:none}';
		strDeb+='div#footer a:hover{color:#b1d006}';
		strDeb+='img#imgfooter{margin:0px 10px 0px 0px}';
		strDeb+='.letitre{color:#B8D600; padding:0; margin:20px 0px 20px 240px; font-size:25px; font-weight:normal}';
//		strDeb+='ul li a{color:#716175}';
//		strDeb+='A{font-size: 9pt;text-decoration: none;color: black;}';
//		strDeb+='A:hover{text-decoration: none;color: #cc3366;}';
//		strDeb+='A.etic{font-size: 9pt;text-decoration: none;color: #b4b5b9;}';
//		strDeb+='A.etic:hover{text-decoration: none;color: #cc3366;}';
//		strDeb+='A.menutop{font-size: 9pt;text-decoration: none;color: black;font-weight: bold;}';
//		strDeb+='A.menutop:hover{text-decoration: none;color: #cc3366;}';
//		strDeb+='.divbody{font-size: 9pt;font-family: "Trebuchet MS";color: #78828d;margin-top: 36px;margin-left: 36px;}';
//		strDeb+='.lifleche{line-height: 16pt;}';
//		strDeb+='.tdheadergauche{font-size: 9pt;background-color: #2d3741;text-transform: uppercase;color: white;padding-right: 20px;padding-left: 20px;padding-bottom: 4px;padding-top: 4px;}';
//		strDeb+='.tdcontentgauche{font-size: 9pt;background-color: #e0e6e9;color: #78828d;padding-right: 20px;padding-left: 20px;padding-bottom: 8px;padding-top: 16px;}';
//		strDeb+='.tdheaderbody{font-size: 9pt;background-color: #e3e5e6;text-transform: uppercase;color: #3f3e42;padding-right: 20px;padding-left: 20px;padding-bottom: 4px;padding-top: 4px;font-weight: bold;}';
//		strDeb+='.tdcontentbody{font-size: 9pt;background-color: #f3f4f4;color: #78828d;padding-right: 20px;padding-left: 20px;padding-bottom: 8px;padding-top: 16px;}';
		strDeb+='</style></head><body>';
//        strDeb+='</head><body onload="window.print();">';

		strFin='</body></html>';
		if(printWin && !printWin.closed) printWin.close();
		printWin=window.open();
		printWin.document.write(strDeb);
		printWin.document.write('<table width="630"><span class="letitre">' + tElem.innerHTML  +'</span>'+ hElem.innerHTML +'</table>');
		printWin.document.write(strFin);
		//if (printWin.document.execCommand){
		    printWin.document.execCommand("SaveAs")
	    //}
	    //else {
	    //    alert("Utiliser le SaveAs");
	    //}
		//printWin.location.reload();
		printWin.focus();
		delete hElem;
	}
}

