function GotoPage(PagePath)
{
    var re = new RegExp(/(\w)+\/(\w|\-)+.stm/);
    var str1 = window.location.href;
    var str2 = str1.replace(re,'');
    
    var url = str2 + PagePath;
    
    window.location.href = url;
}