﻿window.onbeforeunload = function(event)
{
	//Changed by Alireza
    //$.ajax({ url: "Handlers/BrowserClose.ashx/RemoveUser",
    $.ajax({ url: "/Handlers/BrowserClose.ashx/RemoveUser",
    //End Changed by Alireza
		type: "POST",
		contentType: "application/json; charset=utf-8",
		data: {},
		dataType: "text/plain",
		success: function(msg) { },
		error: function(msg) { }
	});
};
