// Site directory (with trailing slash), reference multiple times within this file.
var site  = "/";

function optionPrint() { 
	var sOption="toolbar=no,location=no,directories=no,menubar=yes,scrollbars=yes,width=650,height=550,left=25,top=25";

	var sContent = document.getElementById('print-content').innerHTML;

	var winprint=window.open("","",sOption);
		winprint.document.open();
		winprint.document.write('<html><head><title>Canadian Institute of Actuaries</title><link rel="stylesheet" type="text/css" href="'+site+'common/cia.css"><link rel="stylesheet" type="text/css" href="'+site+'common/print.css"></head><body>');
		winprint.document.write('<img src="'+site+'images/print-logo.gif" alt="" width="208" height="71" border="0">');
		winprint.document.write('<table border="0" cellspacing="0" cellpadding="0" width="100%"><tr valign="top"><td id="content">');
		winprint.document.write(sContent);
		winprint.document.write('</td></tr></table></div>');
		winprint.document.write('<div id="footer">This website is maintained by the CIA Webmaster<br><strong>Disclaimer &copy; Copyright Canadian Institute of Actuaries. All Rights Reserved.</div>');
		winprint.document.write('</body></html>'); 
		winprint.document.close(); 
		winprint.focus(); 
	}
