function BrowserData()
{
		this.userAgent = "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Q312461)";
		this.browser = "MSIE";
		this.majorVer = 6;
		this.minorVer = "0";
		this.betaVer = "0";
		this.platform = "NT";
		this.platVer = "5.0; Q312461";
		this.getsNavBar = true;
		this.doesActiveX = true;
		this.doesPersistence = true;
		this.fullVer = 6;
}
var oBD = new BrowserData();
//-->

function fnPrint()
{
   if(oBD.majorVer >= 4)
   {
      try
      {
         window.print();
      }
      catch(e)
      {
         alert('The attempt to print failed. Please use your browsers default print services.');
      }
   }
   else
   {
      alert("You are using a browser that is not supported by the Print button on this page. You can print this page by right-clicking within the article and selecting Print from the menu that appears.");
   }
}