function printthispage(){
	content=document.getElementById('main').innerHTML;
  	var win=window.open("","");
	win.document.open();
	win.document.write('<html><head><title>Clayfield International College</title>');
	win.document.write('<link rel="stylesheet" type="text/css" media="screen" href="reset.css" />');
	win.document.write('<link rel="stylesheet" type="text/css" media="screen" href="clearfix.css" />');
	win.document.write('<link rel="stylesheet" type="text/css" media="screen" href="print.css" />');
	win.document.write('</head>');
	win.document.write('<body>');
	win.document.write(content);
	win.document.write('</body>');
	win.document.write('</html>');
	win.document.close();
	win.focus();
}

