/*

put 
ID="DHTML_Header"
ID="DHTML_Menu"
ID="DHTML_Footer"
in balises that contain the HTML code of Header/Menu/Footer

put in the HTML HEADER (with css links) with the right path : 
<script language="javascript" src="js/print_page.js"></script>

function is called by :
<a href="#" onClick="TemplatePrint(this)"  class="green_link_template">Print Page</a>

*/

	function TemplatePrint(myObjLink) {

		if (myObjLink.innerHTML == "&gt;&gt;&nbsp;Back&nbsp;to&nbsp;previous&nbsp;page") {
			myDisplayValue = '';
			myObjLink.innerHTML = "&gt;&gt;&nbsp;Print&nbsp;Page";
		} else {
			myDisplayValue = 'none';
			myObjLink.innerHTML = "&gt;&gt;&nbsp;Back&nbsp;to&nbsp;previous&nbsp;page";
		}
		document.getElementById('DHTML_Header').style.display	= myDisplayValue;
		document.getElementById('DHTML_Menu').style.display		= myDisplayValue;
		document.getElementById('DHTML_Footer').style.display	= myDisplayValue;
	}

