﻿function Paging(element)
{
    if (event.keyCode == 13)
    {
        var page = element.value;
        var path = document.getElementById("pathUrl").value;
        
        window.location = window.location.protocol + "//" + window.location.hostname + path + page + "/";
    }
}