function submitSearch() {
        var newurl = arguments[0];
        if(document.forms['GlobalForm'].filter.value==''){
                if(arguments.length==2) newurl = newurl + '#' + arguments[1];
                location.href=newurl;
        } else {
                document.forms['GlobalForm'].action = newurl;
                document.forms['GlobalForm'].submit();
        }
}
