function GetFormSSTiny(){
    f = document.forms[0];
    var root = "";
    if(f.search_paper_small.value == "Gotlands Allehanda")
        root = "/ga";
    else if(f.search_paper_small.value == "Gotlands Tidningar")
        root = "/gt";
        
    //location.href= root + "/sok/?paper="+ f.search_paper_small.value +"&r="+Math.floor(Math.random()*4000)+"#" + f.search_pattern_small.value;
    location.href = root + "/sok/?pattern=" + f.search_pattern_small.value +"&paper="+ f.search_paper_small.value;
}   

function GetFormSSTinyEnter()
{
    args = arguments;
    e = args[0];
    if(e==null) {
        e = window.event;
    }
    if (e && e.keyCode == 13) {
        GetFormSSTiny();
    } else {
        return false;
    }
}