      function f_c_f_email()
        {
          if (document.f_email.i_email.value == 'Your E-mail address here...')
            {
              document.f_email.i_email.value='';
            }
        }
      function f_r_f_email()
        {
          if (document.f_email.i_email.value == '')
            {
              document.f_email.i_email.value='Your E-mail address here...';
            }
        }
      function f_r_f_validate(object)
        {
          var strValue = object.i_email.value;
          var strFilter = /^([0-9a-z]([-.\w]*[0-9a-z])*@(([0-9a-z])+([-\w]*[0-9a-z])*\.)+[a-z]{2,6})$/i;
          if (!strFilter.test(strValue))
            {
              alert("Please enter a valid E-mail address.");
              object.i_email.focus();
              return false;
            }
          if (object.i_email.value == "")
            {
              alert("Please enter a value for the E-mail field.");
              object.i_email.focus();
              return false;
            }
          if (object.i_email.value.length < 9)
            {
              alert("Please enter at least 9 characters in the E-mail field.");
              object.i_email.focus();
              return false;
            }
          return true;
        }
