var sParam
var sTypePrint

//*********************************************************
//* SOURCE : //http://www.ccim.be/ccim328/trucs/print.htm *
//*********************************************************

//sParam = "EN"
sParam = "FR"
//sTypePrint = "BUTTON"
sTypePrint = "IMG"

function printit(){ 
if (NS) {
window.print() ; 
} else {
var WebBrowser = '<OBJECT ID="WebBrowser1" WIDTH=0 HEIGHT=0 CLASSID="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2"></OBJECT>';
document.body.insertAdjacentHTML('beforeEnd', WebBrowser);
WebBrowser1.ExecWB(6, 2);
//Use a 1 vs. a 2 for a prompting dialog box
WebBrowser1.outerHTML = ""; 
}
}
 
var NS = (navigator.appName == "Netscape");
var VERSION = parseInt(navigator.appVersion);
if (VERSION > 3) {
	if (sTypePrint == "BUTTON") {
		if (sParam == "EN") {
			document.write('<form><input type=button value="Print" name="Print" onClick="printit()"></form>'); 
		} else {
			document.write('<form><input type=button value="Imprimer" name="Print" onClick="printit()"></form>'); 
		}
	} else {
		if (sTypePrint == "IMG") {
			document.write('<form><a href="javascript:printit();"><image src="http://www.danielturp.org/images/imprimez.jpg" border="0"></a></form>'); 
		}
	}
}

