	
function hidebtn() {
		alert("test");
		document.getElementById("printbtns").style.display="none";
	}


function myPrint(ID) {
		
		
		var txt = document.getElementById(ID).innerHTML;
		var newWin = window.open('', "mywin", 'width=550, height=480, scrollbars=yes, status=yes, menubar=1, resizable=1');
		var csstxt = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><link href="/caasWeb2010/opencms/system/modules/com.caas.corporate/resources/default.css" type=text/css rel=stylesheet></head>';
		var hide ='<script>function hidebtn() {document.getElementById("printbtns").style.display="none";}</script>';
		var imgtxt ="<body class=allCAASback onload='javascript:hidebtn();'><table align=center style=background:#ffffff; font-size: 11px;><tr><td class=defaultText><div align=left><img src='/caasWeb2010/opencms/caas/en/images/logos/logo_caas.jpg' /></div><hr noshade color=#DBDBDB>";
		
		txt = csstxt+hide+imgtxt+txt; 
		txt += "</td></tr></table><br><div align=center class=bodysize>@ 2010 Civil Aviation Authority of Singapore, All rights reserved.</div>";
		txt += "<a href='' onclick='javascript:window.print();'></a></body></html>";
		newWin.document.open();
		//newWin.document.getElementById("printbtns").style.display="none";
		newWin.document.write(txt);
		newWin.document.close();
		newWin.print();


	}


	
