<!--
function getAJAXObject()
{
    asyncRequest = null;
    try
    {
        if (window.XMLHttpRequest)
        {
            asyncRequest=new XMLHttpRequest();
        }
        else
        {
            asyncRequest=new ActiveXObject("Microsoft.XMLHTTP");
        }
    }
    catch(exception)
    {
        alert('Ajax error! '.exception.toString());
    }
    return asyncRequest;
}
-->


