function printPage() {
			//var txtFName = document.getElementById("txtFName");
			var container = document.getElementById("contentToPrint");
			var newWindow = window.open(window.location, "");
			
			if(container){
			var strToPrint = '<html><head><link rel="stylesheet" href="/_css/styleRM2007.css" type="text/css" media="screen" /></head><body><img src="http://www.recoverymonth.gov/2006/_images/site/RMPrintLogo.gif" alt="Recovery Month logo" hspace="5" vspace="5" width="100" height="37" border="0" align="absmiddle"/><span id="lblResult" style="font-family:Arial;font-size:10pt;">' +  window.location + '<br/><br/></span>' + container.innerHTML + '</body></html>';
			newWindow.document.write(strToPrint);
			newWindow.document.close();
			}
			//window.print();
		}
		
		function printPage_2008() {
			//var txtFName = document.getElementById("txtFName");
			var container = document.getElementById("contentToPrint");
			var newWindow = window.open(window.location, "");
			var newStyle = '<style type="text/css"><!-- body{margin:10px;}--></style>';
			
			if(container){
			var strToPrint = '<html><head><link rel="stylesheet" href="/_css/styleRM2007_08.css" type="text/css" media="screen" /><link rel="stylesheet" href="/_css/styleRM2008.css" type="text/css" media="screen" />' + newStyle + '</head><body><img src="http://www.recoverymonth.gov/2006/_images/site/RMPrintLogo.gif" alt="Recovery Month logo" hspace="5" vspace="5" width="100" height="37" border="0" align="absmiddle"/><span id="lblResult" style="font-family:Arial;font-size:10pt;">' +  window.location + '<br/><br/></span>' + container.innerHTML + '</body></html>';
			newWindow.document.write(strToPrint);
			newWindow.document.close();
			}
			//window.print();
		}
		
		