<!-- Hide from JavaScript-Impaired Browsers
function verifyform() {
    var valid = true, output = 'Please fill in the following required fields: \n';
	
	if (document.Submit.email.value == "")
			{
		valid = false;
		output +='Email Address, ';
		}

              if (document.Submit.Content.value == "")
			{
		valid = false;
		output +='Content Area ';
		}
	if (document.Submit.D1.value == 0) {
        valid = false;
        output += '\n\nPlease select a category from the pulldown menu\n';
    }
	
    if (!valid)
        alert(output);

	else
	{
		{document.Submit.submit();}
	}
}
 //-->


