function searchSubmit(sortby,displayas,searchpage,category){ errorNr = 0; var obj = document.getElementById("query"); /* errorText ="Please enter seThFølgende felter mangler at blive udfyldt\n-----------------------------------------------\n"; var obj = document.getElementById("query"); if (obj.value == ""){ errorText += " * Søgeord/søgestreng\n"; errorNr++; } */ if (errorNr > 0) { alert(errorText); } else { var tmp = obj.value; var q = escape(tmp).replace("%27","%22"); // var submit_this = '/global/searchresult?opendocument&charset=ISO-8859-1&Query='+q+'&SearchMax=0&SortResultBy='; var submit_this = searchpage+'?opendocument&charset=ISO-8859-1&Query='+q+'&SearchMax=0&SortResultBy='; var tq = q; if(isNaN(parseFloat(tq))){ submit_this += sortby+'&SortResultByType='+displayas; }else{ submit_this += 'Title&SortResultByType=Ascending'; } top.location.href = submit_this; } return false; } function PrintPage(){ window.print(); }