function ClearSerachBox(){
	document.getElementById("news_searchbox").value = "";
}

function printPartOfPage(elementId)
{
 var printContent = document.getElementById(elementId);
 var windowUrl = 'about:blank';
 var uniqueName = new Date();
 var title= "AETN International News";
 var windowName = 'Print' + title + uniqueName.getTime();
 var printWindow = window.open("news.jsp", "AETN_International_News", 'width=500,height=500,scrollbars=yes,resizable=yes');
 printWindow.document.writeln('<link rel="stylesheet" type="text/css" href="../css/master.css" />');
 printWindow.document.writeln('<title>AETN_International_News</title>');
 printWindow.document.write(printContent.innerHTML);
 printWindow.document.close();
 printWindow.focus();
 printWindow.print();
 printWindow.close();
}

