// 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=640,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>Somerset West Community Health Centre</title><link rel=\"stylesheet\" type=\"text/css\" href=\"'+link_path+'common/swchc.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=\"5\" cellspacing=\"0\" width=\"600\" bgcolor=\"#ffffff\">');
		winprint.document.write('<tr><td width=\"600\">');
		winprint.document.write('<img src=\"'+link_path+'images/wrapper/logo-print.gif\" alt=\"\" width=\"128\" height=\"193\" border=\"0\">');
		//winprint.document.write(sTitle);
		//winprint.document.write('<br><br>');
		winprint.document.write(sContent);
		winprint.document.write('<hr size=\"1\"><img src=\"'+link_path+'images/wrapper/spacer.gif\" width=\"1\" height=\"5\" border=\"0\" alt=\"\"><br><div id="\footer\">Copyright &copy; Somerset West Community Health Centre</div>');
		winprint.document.write('</table>');
		winprint.document.write('</body>');
		winprint.document.write('</html>');
		winprint.document.close();
		winprint.focus();
	}

