
function form_reminderservice(frm) {

	if (!Validate_text(frm.firstname, "Please enter your first name."))
		return false;
		
	if (!Validate_text(frm.surname, "Please enter your surname."))
		return false;
		
	if (!Validate_email(frm.email, "Please enter your email address."))
		return false;
		
	if (!Validate_text(frm.recipientfirstname, "Please the first name of the person you want to remember."))
		return false;
		
	if (!Validate_text(frm.recipientsurname, "Please the surname of the person you want to remember."))
		return false;
	
	return true;
}


function form_buyersclub(frm) {
	
	if (!Validate_text(frm.firstname, "Please enter your first name."))
		return false;
		
	if (!Validate_text(frm.surname, "Please enter your surname."))
		return false;
		
	if (!Validate_email(frm.email, "Please enter your email address."))
		return false;
		
	return true;
}

function form_detail(frm) {

	if (!Validate_int(frm.itemquantity, "Please enter the quantity you wish to add to your shopping basket."))
		return false;

	return true;
}
