function makealert(theform)
{
  var totalstrerrors = "";
  
  if (validate(theform.FirstName.value,"req"))
  {
	totalstrerrors += "Please Enter the First Name\n";
  }
  
  if (validate(theform.LastName.value,"req"))
  {
	totalstrerrors += "Please Enter the Last Name\n";
  }
  
  if (validate(theform.Email.value,"email"))
  {
	totalstrerrors += "Please Enter a valid Email\n";
  }

  if (validate(theform.ShippingAddress.value,"req"))
  {
	totalstrerrors += "Please Enter the Shipping Address\n";
  }
  
  if (validate(theform.ShippingCity.value,"req"))
  {
	totalstrerrors += "Please Enter the Shipping City\n";
  }
  
  if (validate(theform.ShippingZip.value,"req"))
  {
	totalstrerrors += "Please Enter the Shipping Zip\n";
  }
  
  if (theform.Brand.value == "Other")
  {
  	if (validate(theform.OtherBrand.value,"req"))
  	{
		totalstrerrors += "Please Enter the Laptop Brand for Other\n";
  	}
  }
  
  if (validate(theform.Model.value,"req"))
  {
	totalstrerrors += "Please Enter the Laptop Model\n";
  }
  
  if (validate(theform.SerialNumber.value,"req"))
  {
	totalstrerrors += "Please Enter the Laptop Serial Number\n";
  }
  
  if (theform.Agree.checked!=true)
  {
	totalstrerrors += "Please Read and Agree to our Terms and Conditions\n";
  }
  
  if (totalstrerrors == "")
  {
    theform.Submit.disabled = true;
    return true;
  }
  else
  {
    alert(totalstrerrors);
    theform.Submit.disabled = false;
    return false;
  }
}