<!--hide this script from non-javascript-enabled browsers

function printPage() 
{
	hideDivs()
//   	window.onbeforeprint = hideDivs;
    window.onafterprint = showDivs;
	window.print();
}

function hideDivs() 
{
	document.getElementById("container").style.display = 'none';
	var pr = document.getElementById("printForm");
	var pd = document.getElementById("printData");
	if (pr != null && pd != null)
	{
		pd.innerHTML=pr.innerHTML;
		pd.style.display="block"
		document.body.style.background = "white"
	}
}

function showDivs() 
{
	document.getElementById("container").style.display = 'block';
	var pd = document.getElementById("printData");
	pd.innerHTML="";
	pd.style.display = 'none';
	document.body.style.background = "#eeeee7"
}


