
<!--    


function validate_form(){

//=========================================================
//Begin Validate First Name Field

	if (bioform.firstname.value == "")
  {
    alert("Please enter a value for the First Name field.");
    bioform.firstname.focus();
    return (false);
  }

  
//End Validate First Name Field
//=========================================================


//=========================================================
//Begin Validate Last Name Field

	if (bioform.surname.value == "")
  {
    alert("Please enter a value for the Surname field.");
    bioform.surname.focus();
    return (false);
  }
  

//End Validate Last Name Field
//=========================================================

//=========================================================
//Begin Validate EMail Field

	if (bioform.email.value == "")
  {
    alert("Please enter a value for the EMail field.");
    bioform.email.focus();
    return (false);
  }
  

//End Validate EMail Field
//=========================================================


//=========================================================
//Begin Validate Telephone Field

	if (bioform.telephone.value == "")
  {
    alert("Please enter a value for the Telephone field.");
    bioform.telephone.focus();
    return (false);
  }  

//End Validate Telephone Field

//=========================================================


//=========================================================
//Begin Validate Enquiry Field

	if (bioform.enquiry.value == "")
  {
    alert("Please enter an enquiry.");
    bioform.enquiry.focus();
    return (false);
  }

  
//End Validate Enquiry Field

//=========================================================

  return (true);

  }

//-->


<!--     

             aon = new Image();
             aon.src = "images/but1_2.gif";
             aoff = new Image();
             aoff.src = "images/but1_1.gif";     

             bon = new Image();
             bon.src = "images/but2_2.gif";
             boff = new Image();
             boff.src ="images/but2_1.gif";     

             con = new Image();
             con.src = "images/but3_2.gif";
             coff = new Image();
             coff.src = "images/but3_1.gif";     

             don = new Image();
             don.src = "images/but4_2.gif";
             doff = new Image();
             doff.src = "images/but4_1.gif";

             eon = new Image();
             eon.src = "images/but5_2.gif";
             eoff = new Image();
             eoff.src = "images/but5_1.gif";
            
 			 fon = new Image();
             fon.src = "images/but6_2.gif";
             foff = new Image();
             foff.src = "images/but6_1.gif";
			             
 			 gon = new Image();
             gon.src = "images/but7_2.gif";
             goff = new Image();
             goff.src = "images/but7_1.gif";			           
			           

             var stag;       
             var tag = 1;
             var rollbuf = "CLEAR";
     

     function rollon(imgName) {
             clearTimeout(stag);
             if ( rollbuf != "CLEAR" ) {
               imgbutton = eval(rollbuf + "off.src");
               document[rollbuf].src = imgbutton;
               rollbuf = "CLEAR";
             }

             imgbutton = eval(imgName + "on.src");
             document[imgName].src = imgbutton;
             tag = 1;

     }

     function rolloff(imgName) {
             if (tag == 1) { 
               rollbuf = imgName;
               BLAH = imgName;
               stag = setTimeout("rolloff(BLAH)",20);
               tag = 0;
             }

             else {
               imgbutton = eval(imgName + "off.src");
               document[imgName].src = imgbutton;
               rollbuf = "CLEAR";
               self.status="Welcome to Biolock.";
               tag = 1;
             }
     }     

//-->



