function validate_form ( )

{
valid = true;
	
if ( document.microform.return.value == "" )
{
alert ( "Please fill in the 'Return' field." );
valid = false;
}
    

if ( document.microform.description.value == "" )
{
alert ( "Please fill in the 'Description' field." );
valid = false;
}
    
    
if ( document.microform.replacement.value == "" )
{
alert ( "Please fill in the 'Replacement' field." );
valid = false;
}
	
	
if ( document.microform.firstname.value == "" )
{
alert ( "Please fill in the 'Firstname' field." );
valid = false;
}
	

if ( document.microform.lastname.value == "" )
{
alert ( "Please fill in the 'Lastname' field." );
valid = false;
}


if ( document.microform.company.value == "" )
{
alert ( "Please fill in the 'Company' field." );
valid = false;
}


if ( document.microform.address.value == "" )
{
alert ( "Please fill in the 'Address' field." );
valid = false;
}


if ( document.microform.city.value == "" )
{
alert ( "Please fill in the 'City' field." );
valid = false;
}
    

if ( document.microform.state.value == "" )
{
alert ( "Please fill in the 'State' field." );
valid = false;
}


if ( document.microform.phone.value == "" )
{
alert ( "Please fill in the 'Phone' field." );
valid = false;
}


if ( document.microform.email.value == "" )
{
alert ( "Please fill in the 'Email' field." );
valid = false;
}

return valid;

}