function val_recipe() {
	var t = document.getElementById('title').value;
	if(t.match(/^\s+$/) || t == '') {
		alert('recipe must have a title');
		return false;
	}

	return true;
}

//01527585558
//
