<!--  
function validate() {
        mNv=document.mainform.name.value;
        if (mNv=='') {
                alert('Please give your recipe a title.');
                return false;
        }
        mRv=document.mainform.recipe.value;
        if (mRv=='') {
                alert('Duh! That\'s not much of a recipe!');
                return false;
        }
}
-->