function validate_form()
{
	var error = "";
	var crlf = "\r\n";
	if (rmaform.Solution_Request[0].checked ==false && rmaform.Solution_Request[1].checked ==false) {error = "-- Refund or Replacement option" + crlf + error}
	if (rmaform.Specific_problem.value =="") {error = "-- Specific Problem description" + crlf + error}
	if (rmaform.Items_returned.value =="") {error = "-- Items Returned" + crlf + error}
	if (rmaform.Zipcode.value =="") {error = "-- Zip Code" + crlf + error}
	if (rmaform.State.value =="") {error = "-- State" + crlf + error}
	if (rmaform.City.value =="") {error = "-- City" + crlf + error}
	if (rmaform.Address1.value =="") {error = "-- Address" + crlf + error}
	if (rmaform.email.value == "") {error = "-- Email address" + crlf + error}
	if (rmaform.realname.value == "") {error = "-- First name" + crlf + error}
	
	if (error != "")
		{
			alert ("The following fields were are not completed:" + crlf + crlf + error);
			return false;
		}
		else alert ("Thank you for your submission." + crlf + crlf + "You should receive an RMA# by email within 24-48 hours.")
}
