function membOver(uid) { var textcolor = '#000000'; var dotsrc = '/lpi/layout.nsf/webImages/dot_active.gif/$file/dot_active.gif'; var dotobj = document.getElementById('img_'+uid); dotobj.src = dotsrc; var divobj = document.getElementById('div_'+uid); divobj.style.color = textcolor; var linkobj = document.getElementById('a_'+uid); linkobj.style.color = textcolor; var nameobj = document.getElementById('n_'+uid); nameobj.style.visibility = 'visible'; nameobj.style.color = textcolor; } function membOut(uid) { var linkcolor = '#333333'; var textcolor = '#333333'; var dotsrc = '/lpi/layout.nsf/webImages/dot_inactive.gif/$file/dot_inactive.gif'; var dotobj = document.getElementById('img_'+uid); dotobj.src = dotsrc; var divobj = document.getElementById('div_'+uid); divobj.style.color = textcolor; var linkobj = document.getElementById('a_'+uid); linkobj.style.color = linkcolor; var nameobj = document.getElementById('n_'+uid); nameobj.style.visibility = 'hidden'; } function placeAll(){ var this_uid = all_uid; var this_x = all_x; var this_y = all_y; var blackdotsrc = '/lpi/layout.nsf/webImages/dot_inactive.gif/$file/dot_inactive.gif'; var nobj; var dotobj; var divobj; for(i=0;i 0) { alert(errorText); } else { var tmp = obj.query.value; var q = escape(tmp).replace("%27","%22"); var submit_this = '/lpi/data.nsf/sogeformResult?readform&Query='+q+'&SearchMax=0&SortResultBy='+sortby+'&SortResultByType='+displayas if(obj.name == "_Sogeform2"){ var n1 = document.getElementById('select_niveau1'); if(eval(n1)){ // alert("N1: " + n1.options[n1.selectedIndex].value); submit_this += "&Category1ID=" + n1.options[n1.selectedIndex].value; } var n2 = document.getElementById('select_niveau2'); if(eval(n2)){ // alert("N2: " + n2.options[n2.selectedIndex].value); submit_this += "&Category2ID=" + n2.options[n2.selectedIndex].value } } top.location.href = submit_this; } return false; } function findNiveau2() { return false; } function searchSubmitMember(objid,sortby,displayas) { errorNr = 0; errorText ="Følgende felter mangler at blive udfyldt\n-----------------------------------------------\n"; var obj = document.getElementById(objid); 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 = '/lpi/data.nsf/membersogeformResult?readform&Query='+q+'&SearchMax=0&SortResultBy='+sortby+'&SortResultByType='+displayas top.location.href = submit_this; } return false; }