<!--// JavaScript Document
function check(){ 

email1 = document.rma.rma_email1.value;
email2 = document.rma.rma_email2.value;

if (email1 != email2) {
alert ('E-mail addresses are different.')

return false;
}

// allow only 500 characters maximum in the field
if (rma.rma_comments.value.length > 500)
{
alert("Please enter at most 500 characters in the description field.");
rma.rma_comments.focus();

return (false);
}

var flag = 0; 

if(document.rma.rma_email1.value == ""){ // e-mail 
flag = 1; 
} 
else if(document.rma.rma_name.value == ""){ // Name 
flag = 1; 
} 
else if(document.rma.rma_street1.value == ""){ // Address 
flag = 1; 
} 
else if(document.rma.rma_city.value == ""){ // City 
flag = 1; 
} 
else if(document.rma.rma_state.value == ""){ // State 
flag = 1; 
} 
else if(document.rma.rma_zip.value == ""){ // Zip 
flag = 1; 
} 
else if(document.rma.rma_phone1.value == ""){ // Phone 
flag = 1; 
} 
else if(document.rma.rma_serial.value == ""){ // Serial Number 
flag = 1; 
} 
else if(document.rma.rma_comments.value == ""){ // Comments 
flag = 1; 
}

if(flag){ 
alert('Please fill out the required fields.'); 

return (false); 
} 
 
 else{ 
return true; 
} 

} 

//-->
