// 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('print-content').innerHTML;
	
	var winprint=window.open("","",sOption); 
		winprint.document.open(); 
		winprint.document.write('<html>');
		winprint.document.write('<head><title>CASLT</title><link rel=\"stylesheet\" type=\"text/css\" href=\"'+link_path+'common/caslt.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/print-logo-e.gif\" alt=\"CASLT\/ACPLS\" width=\"112\" height=\"110\" border=\"0\"><br>');
		//winprint.document.write(sTitle);
		winprint.document.write('<br>');
		winprint.document.write(sContent);
		winprint.document.write('<hr size=\"1\"><div>Copyright &copy; The Canadian Association of Second Language Teachers<br />201-57 Auriga Drive, Nepean, Ontario K2E 8B2 1-877-727-0994.</div>');
		winprint.document.write('</table>');
		winprint.document.write('</body>');
		winprint.document.write('</html>');
		winprint.document.close();
		winprint.focus(); 
}
	
