// Site "Home" Directory - This variable is called from multiple scripts in this file...
var home  = "/";

/* "Printable version" Popup Script * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
function Print() { 
	var sOption="toolbar=no,location=no,directories=no,menubar=yes,scrollbars=yes,width=750,height=600,left=100,top=25";
	//var sTitle = document.getElementById('printTitle').innerHTML;
	var sContent = document.getElementById('printContent').innerHTML;
	var winprint=window.open("","",sOption); 
		winprint.document.open(); 
		winprint.document.write('<html>');
		winprint.document.write('<head><title>CLDR COO</title><link rel=\"stylesheet\" type=\"text/css\" href=\"'+home+'common/cool_rdc.css\"></head>');
		winprint.document.write('<body id="print-send">'); 
		winprint.document.write('<img src=\"'+home+'images/spacer.gif\" width=\"1\" height=\"15\" border=\"0\" alt=\"\"><div><img src=\"'+home+'images/coolrdc-logo.gif\" width=\"105\" height=\"106\" border=\"0\" alt=\"CLDR COO\" style=\"margin-left: 30px;\"></div><img src=\"'+home+'images/spacer.gif\" width=\"1\" height=\"15\" border=\"0\" alt=\"\">');
		winprint.document.write('<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">');
		winprint.document.write('<tr><td width=\"23\" rowspan="3"><img src=\"'+home+'images/spacer.gif\" width=\"23\" height=\"1\" border=\"0\" alt=\"\"></td><td width=\"100%\">');
		//winprint.document.write(sTitle);
		winprint.document.write('<br><br>');
		winprint.document.write(sContent);
		winprint.document.write('</td><td width=\"23\"><img src=\"'+home+'images/spacer.gif\" width=\"23\" height=\"1\" border=\"0\" alt=\"\"></td></tr>');
		winprint.document.write('<tr><td colspan=\"2\">&nbsp;</td></tr>');
		winprint.document.write('<tr><td colspan=\"2\" width=\"100%\" style=\"margin-top: 0.5em; border-top: 1px solid #000000;\">');
		winprint.document.write('<img src=\"'+home+'images/spacer.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br><small>&copy; CLDR COO.<br><img src=\"'+home+'images/spacer.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br>Centre local de donneés de recherche de Carleton, Ottawa, Outaouis (CLDR COO)<br>University of Ottawa, Morisset Library, 65 University Street, Room MRT 322, Ottawa, Ontario, K1N 6N5 Canada<br>T: (613) 562-5800 ext 2887 | F: (613) 562-5132 | E: coolrdc@uottawa.ca</small><BR><BR><a href=\"#\" onclick=\"window.print();return false\">IMPRIMEZ</a>');
		winprint.document.write('</td></tr>');
		winprint.document.write('</table>');
		winprint.document.write('</body>');
		winprint.document.write('</html>');
		winprint.document.close();
		winprint.focus(); 
	}

// "Send to a Friend" Popup Script * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
function Send() {
	popupEmailWin = window.open(''+home+'send-to-a-friend_f.php', 'send', 'scrollbars=auto,width=475,height=540,left=380,top=50,noresize')
	}
