function checkform(contact) {

if	(contact.nume.value=="")
	{
	alert("Please fill in the name field!");
	contact.nume.select();
	return;
	}


if	(contact.email.value=="")
	{
	alert("Please fill in the e-mail field!");
	contact.email.select();
	return;
	}

if	(contact.comments.value=="")
	{
	alert("Please post your comments / question!");
	contact.comments.select();
	return;
	}

document.contact.da.value=1;
document.contact.submit();

}
