//
function GetCurrentFileName()
{
    var path = GetLocation();
    return path.substr(path.lastIndexOf("/")+1);
}

//
function GetLocation()
{
    return window.location.pathname;
}


