function HideAndPrint(elemID)
{
	document.getElementById(elemID).style.display = 'none';
	window.print();
}
