function newSearchCount(response){ //alert(response.getAttribute('count')); document.getElementById('searchButton').disabled = false; document.getElementById('searchButton').value = 'Go to results (' + response.getAttribute('count') + ')'; } function updateSearchCount(){ /*if(document.searchForm.countryId.value != 0 || document.searchForm.areaOfStudyId.value != 0 || document.searchForm.languageId.value != 0 || document.searchForm.freetext.value != ''){ */ attributes2 = new Array(); attributes2.push(new Array('countryId',document.searchForm.countryId.value)); attributes2.push(new Array('areaOfStudyId',document.searchForm.areaOfStudyId.value)); attributes2.push(new Array('languageId',document.searchForm.languageId.value)); attributes2.push(new Array('freetext',document.searchForm.freetext.value)); attributes2.push(new Array('levelOfEducationId',document.searchForm.levelOfEducationId.value)); makeReq('www.masterguide.org', 'none', 'searchcount', attributes2); /*} else{ document.getElementById('searchButton').disabled = true; document.getElementById('searchButton').value = 'Specify your search'; }*/ }