// 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=yes,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>Institute of Communication Agencies</title><link rel=\"stylesheet\" type=\"text/css\" href=\"'+link_path+'common/ica.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=\"20\" cellspacing=\"0\" width=\"100%\" bgcolor=\"#FFFFFF\">');
		winprint.document.write('<tr><td width=\"100%\">');
		winprint.document.write('<img src=\"'+link_path+'images/wrapper/ICA 2007 LOGO 200 dpi 5wide 1_2high.JPG" alt=\"\" border=\"0\"><br><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('<hr size=\"1\"><img src=\"'+link_path+'images/spacer.gif\" width=\"1\" height=\"6\" border=\"0\" alt=\"\"><br><div id=\"home-footer\">Institute of Communication Agencies<br>2300 Yonge Street, Suite 3002; Toronto, ON M4P 1E4<br>Tel: (416) 482-1396 | Fax: (416) 482-1856 | E-mail: <a href=\"mailto:ica@icacanada.ca\">ica@icacanada.ca</a><br>All content on this site &copy; 2006 by the Institute of Communication Agencies<br><a href=\"#\">Privacy Policy</a> | <a href=\"#\">Sitemap</a></div>');
		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(''+link_path+'email-page.cfm', 'send', 'scrollbars=auto,width=475,height=625,left=380,top=50,resizable')
}