﻿window.onunload = function() {

    var xmlDoc = null;

    if (typeof window.ActiveXObject != 'undefined') {
        xmlDoc = new ActiveXObject("Microsoft.XMLHTTP");
    }
    else {
        xmlDoc = new XMLHttpRequest();
    }
    xmlDoc.open("GET", "OnUnLoad.aspx?Info=" + location.pathname, false);
    xmlDoc.send(null);

}
