function validate (frm)
{
         //
               // Check the name field to see if any characters were entered
               //
               if (frm.Name.value.length == 0)
               {
                   alert("Please enter your name.");
                   frm.Name.focus();
                   return false;
               }
//
               // Check the zip field to see if any characters were entered
               //
               if (frm.Zip.value.length == 0)
               {
                   alert("Please enter your zip code so we may respond with stores in your area.");
                   frm.Zip.focus();
                   return false;
               }
//
               // Check the email field to see if any characters were entered
               //
               if (frm.Email.value.length == 0)
               {
                   alert("A correct Email Address will allow us to properly respond to you.");
                   frm.Email.focus();
                   return false;
               }
               //
               // Now check the email field for the "@" symbol
               //
               if (frm.Email.value.indexOf("@") == -1)
               {
                   alert("A correct Email Address will allow us to properly respond to you.");
                   frm.Email.focus();
                   return false;
               }
				//
               // Now check the email field for the "." symbol
               //
               if (frm.Email.value.indexOf(".") == -1)
               {
                   alert("A correct Email Address will allow us to properly respond to you.");
                   frm.Email.focus();
                   return false;
               }
}