﻿function getFileNameFromUrl() {
    var path = window.location.pathname;
    var file = path.replace(/^.*\/(\w{2})\.html$/i, "$1");
    file=file.replace('/', '');
    return file ? file : "undefined";
}
