function winPrint()
{
	if (window.print) 
	{
		window.print();
	}
	else
	{
		alert("Your Browser DOES NOT support printing by this method. Please close this window and select File, then Print from the Menu.");
	}
}

