    function ShowLinka(linka)
    {
        location = linka;
    }
    
    function SetLinkOver(obj)
    {
        obj.style.color =  "#0000FF";
        obj.style.cursor = "hand";
        obj.style.textDecoration = "underline";
    }
    
   function SetLinkOut(obj)
    {
        obj.style.color =  "#0069FF";
        obj.style.cursor = "";
        obj.style.textDecoration = "";
    }
