pageHTML = ''; pageHTML += '
'; //-- Quicksearch form with pull down criteria lists --// pageHTML += '
'; pageHTML += '
'; pageHTML += ''; pageHTML += '
'; pageHTML += ''; pageHTML += ''; pageHTML += ''; pageHTML += ''; pageHTML += ''; pageHTML += ''; pageHTML += 'search for executive jobs'; pageHTML += '
'; pageHTML += ''; pageHTML += '
'; //-- Featured jobs served by banner advertising --// pageHTML += '
'; pageHTML += '
'; document.write(pageHTML); function QuickSearchSubmit() { var searchForm = document.getElementById('execappointmentsQuicksearch'); var searchText = document.getElementById('execappointmentsSearchtext'); var keywords = document.getElementById('execappointmentsKeywords'); var industry = document.getElementById('execappointmentsIndustry'); var region = document.getElementById('execappointmentsRegion'); var jobfunction = document.getElementById('execappointmentsJobfunction'); if( searchText.value != "Keywords..." ) keywords.value = searchText.value; if( jobfunction.value ==0 && industry.value ==0 && region.value ==0 ) { alert("Please select at least one job function, industry or location"); return; } searchForm.submit(); }