// JavaScript Document
function bmoTracker(xmlpath, url) 
{
 	if (window.ActiveXObject)
 	{
 		btracker=new ActiveXObject("Microsoft.XMLDOM");
		btracker.async=false;
 		btracker.load(xmlpath);
	}
	else if (document.implementation && document.implementation.createDocument)
 	{
 		btracker= document.implementation.createDocument("", "", null);
 		btracker.async=false;
		btracker.load(xmlpath);
 	}
else 
	{
		//alert('Your browser does not allow this script.'); 
	}
}