﻿<!--
    function checkinitialval(thevalue) {
        if (thevalue == 'Enter a Post Code or Town to start searching ... ') {
            document.getElementById('lbsrch_Areas').value = '';
        } else {
            document.getElementById('lbsrch_Areas').value = thevalue;
        }
    }

    function clearInputItem(ielement) {
        var thevalue = document.getElementById(ielement).value;
        if (thevalue == 'Firstname' || thevalue == 'Surname' || thevalue == 'Address Line 1' || thevalue == 'Address Line 2' || thevalue == 'Town' || thevalue == 'County' || thevalue == 'Post Code' || thevalue == 'Home Telephone' || thevalue == 'Mobile No' || thevalue == 'Email Address' || thevalue == 'Home/Mobile Telephone' || thevalue == 'Enter Your Town/Postcode') {
            document.getElementById(ielement).value = '';
        } else {
            document.getElementById(ielement).value = thevalue;
        }
    }

    function change(e, color) {
        var el = window.event ? event.srcElement : e.target
        if (el.tagName == "INPUT" && el.type == "submit")
            el.style.backgroundColor = color
    }
//-->
