// Site link path (with trailing slash), referenced multiple times within this file.
var link_path  = "/";

function PrintThisPage() 
{ 
   var sOption="toolbar=yes,location=no,directories=yes,menubar=yes,"; 
       sOption+="scrollbars=yes,width=750,height=600,left=100,top=25"; 

	var sContent = document.getElementById('content-pad').innerHTML;
   
   var winprint=window.open("","",sOption); 
       winprint.document.open(); 
	   winprint.document.write('<html><head><title>Royal Ottawa Health Care Group</title><link href="'+link_path+'common/rohcg.css" type="text/css" rel="stylesheet"><link rel=\"stylesheet\" type=\"text/css\" href=\"'+link_path+'common/print-send.css\"></head>');
	   winprint.document.write('<body><img src="'+link_path+'images/wrapper/print-logo.gif" border="0" height="88" width="227" alt="Royal Ottawa Health Care Group">');
	   winprint.document.write('<div id="content-pad"><div style="margin-left: 57px;">'+sContent);
	   winprint.document.write('<hr size="1"><div id="footer" style="width:100%">Copyright &copy; Royal Ottawa Health Care Group | <a href="'+link_path+'privacy-policy-e.cfm">Privacy Policy</a> | <a href="'+link_path+'terms-of-use-e.cfm">Terms of Use</a> | <a href="'+link_path+'disclaimer-e.cfm">Disclaimer</a> | <a href="'+link_path+'feedback-e.cfm">Feedback</a></div>');
	   winprint.document.write('</div></div></body></html>'); 
       winprint.document.close(); 
       winprint.focus(); 
}

function PrintThisPage_f() 
{ 
   var sOption="toolbar=yes,location=no,directories=yes,menubar=yes,"; 
       sOption+="scrollbars=yes,width=750,height=600,left=100,top=25"; 

	var sContent = document.getElementById('content-pad').innerHTML;
   
   var winprint=window.open("","",sOption); 
       winprint.document.open(); 
	   winprint.document.write('<html><head><title>Services de sant&eacute; Royal Ottawa</title><link href="'+link_path+'common/rohcg.css" type="text/css" rel="stylesheet"><link rel=\"stylesheet\" type=\"text/css\" href=\"'+link_path+'common/print-send.css\"></head>');
	   winprint.document.write('<body><img src="'+link_path+'images/wrapper/print-logo.gif" border="0" height="88" width="227" alt="Services de sant&eacute; Royal Ottawa">');
	   winprint.document.write('<div id="content-pad"><div style="margin-left: 57px;">'+sContent);
	   winprint.document.write('<hr size="1"><div id="footer" style="width:100%"><a href="'+link_path+'privacy-policy-f.cfm">Politique de confidentialit&eacute;</a> | <a href="'+link_path+'terms-of-use-f.cfm">Modalit&eacute;s d\'utilisation</a> | <a href="'+link_path+'disclaimer-f.cfm">Avis de non-responsabilit&eacute;</a> | <a href="'+link_path+'feedback-f.cfm">Commentaires</a><div id="footer" style="margin-top: 0; width:100%">Droits d\'auteurs &copy; Services de sant&eacute; Royal Ottawa</div></div>');
	   winprint.document.write('</div></div></body></html>'); 
       winprint.document.close(); 
       winprint.focus(); 
}