
//	Eric (Webcrawl@usa.net)
//	dynamicdrive.com

function printit()
	{
	if (window.print)
		{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)
		{
		document.write('<input type="image" src="img/print.gif" alt="Print This Page" name="Print" onclick="printit();return false;" />');
		}
