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