// PrintPage.js
//
// Change history
//
// Who	When	Why
// ===	=======	=============================================
// jmp  23may07 created
//
// format script to embed button to print page
//
// please keep these lines on when you copy the source
// made by: Nicolas - http://www.javascript-page.com

function PrintPageButton()
{
	var message = "Print this Page";

	function printpage() {
		window.print();
	}

	document.write("<input type=button " +"value=\""+message+"\" onClick=\"printpage()\">");
}

