function clearSearch() {queryBox = document.getElementById('search');if( queryBox.value == 'SEARCH' ) queryBox.value = '';}function clearZip() {queryBox = document.getElementById('zip');if( queryBox.value == 'ZIP CODE' ) queryBox.value = '';}function clearState() {queryBox = document.getElementById('state');if( queryBox.value == 'STATE' ) queryBox.value = '';}function clearLakeCity() {queryBox = document.getElementById('lake-city');if( queryBox.value == 'LAKE OR CITY' ) queryBox.value = '';}/* QUESTIONNAIRE ON FOCUS*/function clearFirstName() {queryBox = document.getElementById('firstname');if( queryBox.value == 'FIRST NAME' ) queryBox.value = '';}function clearLastName() {queryBox = document.getElementById('lastname');if( queryBox.value == 'LAST NAME' ) queryBox.value = '';}function clearPrimaryPhone() {queryBox = document.getElementById('phone');if( queryBox.value == 'PRIMARY PHONE' ) queryBox.value = '';}function clearEmail() {queryBox = document.getElementById('email');if( queryBox.value == 'EMAIL' ) queryBox.value = '';}function clearAddress1() {queryBox = document.getElementById('address1');if( queryBox.value == 'ADDRESS 1' ) queryBox.value = '';}function clearAddress2() {queryBox = document.getElementById('address2');if( queryBox.value == 'ADDRESS 2' ) queryBox.value = '';}function clearBodyOfWater() {queryBox = document.getElementById('bodyofwater');if( queryBox.value == 'BODY OF WATER' ) queryBox.value = '';}function clearOther() {queryBox = document.getElementById('other');if( queryBox.value == 'OTHER' ) queryBox.value = '';}function clearUsageOther() {queryBox = document.getElementById('usageother');if( queryBox.value == 'OTHER' ) queryBox.value = '';}function clearDockLength() {queryBox = document.getElementById('docklength');if( queryBox.value == 'DESIRED DOCK LENGTH' ) queryBox.value = '';}function clearWaterDepth() {queryBox = document.getElementById('waterdepth');if( queryBox.value == 'WATER DEPTH AT LENGTH' ) queryBox.value = '';}function clearBoatLength() {queryBox = document.getElementById('boatlength');if( queryBox.value == 'BOAT LENGTH' ) queryBox.value = '';}function clearBoatWeight() {queryBox = document.getElementById('boatweight');if( queryBox.value == 'BOAT WEIGHT' ) queryBox.value = '';}function clearBeam() {queryBox = document.getElementById('beam');if( queryBox.value == 'BEAM' ) queryBox.value = '';}function clearBrand() {queryBox = document.getElementById('brand');if( queryBox.value == 'BRAND' ) queryBox.value = '';}function clearYear() {queryBox = document.getElementById('year');if( queryBox.value == 'YEAR' ) queryBox.value = '';}function clearModel() {queryBox = document.getElementById('model');if( queryBox.value == 'MODEL' ) queryBox.value = '';}/* QUESTIONNAIRE ON BLUR*/function showFirstName() {queryBox = document.getElementById('firstname');if( queryBox.value == '' ) queryBox.value = 'FIRST NAME';}function showLastName() {queryBox = document.getElementById('lastname');if( queryBox.value == '' ) queryBox.value = 'LAST NAME';}function showPrimaryPhone() {queryBox = document.getElementById('phone');if( queryBox.value == '' ) queryBox.value = 'PRIMARY PHONE';}function showEmail() {queryBox = document.getElementById('email');if( queryBox.value == '' ) queryBox.value = 'EMAIL';}function showAddress1() {queryBox = document.getElementById('address1');if( queryBox.value == '' ) queryBox.value = 'ADDRESS 1';}function showAddress2() {queryBox = document.getElementById('address2');if( queryBox.value == '' ) queryBox.value = 'ADDRESS 2';}function showZip() {queryBox = document.getElementById('zip');if( queryBox.value == '' ) queryBox.value = 'ZIP CODE';}function showBodyOfWater() {queryBox = document.getElementById('bodyofwater');if( queryBox.value == '' ) queryBox.value = 'BODY OF WATER';}function showOther() {queryBox = document.getElementById('other');if( queryBox.value == '' ) queryBox.value = 'OTHER';}function showUsageOther() {queryBox = document.getElementById('usageother');if( queryBox.value == '' ) queryBox.value = 'OTHER';}function showDockLength() {queryBox = document.getElementById('docklength');if( queryBox.value == '' ) queryBox.value = 'DESIRED DOCK LENGTH';}function showWaterDepth() {queryBox = document.getElementById('waterdepth');if( queryBox.value == '' ) queryBox.value = 'WATER DEPTH AT LENGTH';}function showBoatLength() {queryBox = document.getElementById('boatlength');if( queryBox.value == '' ) queryBox.value = 'BOAT LENGTH';}function showBoatWeight() {queryBox = document.getElementById('boatweight');if( queryBox.value == '' ) queryBox.value = 'BOAT WEIGHT';}function showBeam() {queryBox = document.getElementById('beam');if( queryBox.value == '' ) queryBox.value = 'BEAM';}function showBrand() {queryBox = document.getElementById('brand');if( queryBox.value == '' ) queryBox.value = 'BRAND';}function showYear() {queryBox = document.getElementById('year');if( queryBox.value == '' ) queryBox.value = 'YEAR';}function showModel() {queryBox = document.getElementById('model');if( queryBox.value == '' ) queryBox.value = 'MODEL';}