
//Print the Page
	itsNetscape = (document.layers)?1:0;
	itsIE = (document.all)?1:0;
	
	
function fPrint()	
{	
	if (itsIE)
	{
		window.print();
	}
	else
	{
		alert("To print the page press Ctlr + P.");
	}
}

