// Site link path (with trailing slash), referenced multiple times within this file.
var link_path  = "/";
/* "Printable version" Popup Script * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
function Print() { 
	var whatLanguage = location.pathname;

	var sOption="toolbar=yes,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('content').innerHTML;
	var winprint=window.open("","",sOption); 
		winprint.document.open(); 
		winprint.document.write('<html>');
		winprint.document.write('<head><title>Western Ottawa Community Resource Centre | Centre de ressources communautaires d\'Ottawa ouest</title><link rel=\"stylesheet\" type=\"text/css\" href=\"'+link_path+'common/wocrc.css\"><link rel=\"stylesheet\" type=\"text/css\" href=\"'+link_path+'common/print.css\"></head>');
		winprint.document.write('<body class=\"#print\">'); 
		winprint.document.write('<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" bgcolor=\"#FFFFFF\">');
		winprint.document.write('<tr><td width=\"23\" rowspan="3"><img src=\"'+link_path+'images/spacer.gif\" width=\"23\" height=\"1\" border=\"0\" alt=\"\"></td><td width=\"100%\">');
		winprint.document.write('<img src=\"'+link_path+'images/spacer.gif\" width=\"1\" height=\"15\" border=\"0\" alt=\"\"><div><img src=\"'+link_path+'images/wrapper/logo.gif\" width=\"311\" height=\"59\" border=\"0\" alt=\"Western Ottawa Community Resource Centre | Centre de ressources communautaires d\'Ottawa ouest\"></div><img src=\"'+link_path+'images/spacer.gif\" width=\"1\" height=\"15\" border=\"0\" alt=\"\">');
		//winprint.document.write(sTitle);
		winprint.document.write('<br><br>');
		winprint.document.write(sContent);
		winprint.document.write('</td><td width=\"23\"><img src=\"'+link_path+'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;\">');
		if (whatLanguage.lastIndexOf("-e.") == -1) 
		{ 
			winprint.document.write('<img src=\"'+link_path+'images/spacer.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br><small>Centre de ressources communautaires d\'Ottawa ouest, 2, cour MacNeil court, Kanata, ON K2L 4H7<br>Tél. : +1 613 591-3686 | Téléc. : +1 613 591-2501 | Courriel : <a href="mailto:info@communityresourcecentre.ca">info@communityresourcecentre.ca</a><br>Droits d\'auteur &copy; CRCOO | Numéro d’enregistrement de bienfaisance : 12821 9201 RR 0001</small>');
		}
		else 
		{ 
			winprint.document.write('<img src=\"'+link_path+'images/spacer.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br><small>Western Ottawa Community Centre, 2 MacNeil Court, Kanata ON K2L 4H7<br>T: +1 613 591-3686 | F: +1 613 591-2501 | E: <a href="mailto:info@communityresourcecentre.ca">info@communityresourcecentre.ca</a><br>Copyright &copy; WOCRC | Charitable Registration Number: 12821 9201 RR 0001</small>');
		}
		
		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() {
	var whatLanguage = location.pathname;
	if (whatLanguage.lastIndexOf("-e.") == -1) 
	{ 
		popupEmailWin = window.open(''+link_path+'email-friend-f.php', 'send', 'scrollbars=auto,width=475,height=520,left=380,top=50,resizable')
	} 
	else 
	{ 
		popupEmailWin = window.open(''+link_path+'email-friend-e.php', 'send', 'scrollbars=auto,width=475,height=485,left=380,top=50,resizable')
	}
}