/*Enables the user to view the print dialogue and print the contents of the window 
  they are viewing*/
function printWindow()
{
	if (!window.print)
	{
	alert("You need NS4.x or IE5 to use this print button!") 
	return
	}
window.print()
}