// 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,resizable=yes,"; 
       sOption+="scrollbars=yes,width=750,height=600,left=100,top=25"; 

	var sBreadCrumb = document.getElementById('breadcrumb').innerHTML;
	var sContent = document.getElementById('content-pad').innerHTML;
   
   var winprint=window.open("","",sOption); 
       winprint.document.open(); 
	   winprint.document.write('<html><head><title>uOttawa Institute of Mental Health Research</title><link href="'+link_path+'common/imhr.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/imhr-logo-e.gif" border="0" height="48" width="175" alt="uOttawa Institute of Mental Health Research"><div style="padding-left: 48px;"><hr size="1">');
	   winprint.document.write('<div id="breadcrumb" style="margin: 0 0 10px 0; padding: 0; width: 100%;">' + sBreadCrumb + '</div>');
	   winprint.document.write(sContent);
	   winprint.document.write('<hr size="1"><div style="width: 100%; font-size: 10px;">Copyright &copy; University of Ottawa Institute of Mental Health Research (IMHR). All rights reserved..');
	   winprint.document.write('</div></body></html>'); 
       winprint.document.close(); 
       winprint.focus(); 
}

function PrintThisPage_f() 
{ 
   var sOption="toolbar=yes,location=no,directories=yes,menubar=yes,resizable=yes,"; 
       sOption+="scrollbars=yes,width=750,height=600,left=100,top=25"; 

	var sBreadCrumb = document.getElementById('breadcrumb').innerHTML;
	var sContent = document.getElementById('content-pad').innerHTML;
   
   var winprint=window.open("","",sOption); 
       winprint.document.open(); 
	   winprint.document.write('<html><head><title>L\'Institut de recherche en santé mentale (IRSM) de l\'Université d\'Ottawa</title><link href="'+link_path+'common/imhr.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/imhr-logo-f.gif" border="0" height="45" width="175" alt="L\'Institut de recherche en santé mentale (IRSM) de l\'Université d\'Ottawa"><div style="padding-left: 48px;"><hr size="1">');
	   winprint.document.write('<div id="breadcrumb" style="margin: 0 0 10px 0; padding: 0;">' + sBreadCrumb + '</div>');
	   winprint.document.write(sContent);
	   winprint.document.write('<hr size="1"><div style="width: 100%; font-size: 10px;">Tous droits réservés. &copy; Institut de recherche en santé mentale de l\'uOttawa. (IRSM).');
	   winprint.document.write('</body></html>'); 
       winprint.document.close(); 
       winprint.focus(); 
}
