function check_comment(f)
{
	if (f.name.value=='')
	{
		alert('Introduceti numele!');
		return false;
	}
	if (f.email.value=='')
	{
		alert('Introduceti emailul!');
		return false;
	}
	if (f.subject.value=='')
	{
		alert('Introduceti subiectul!');
		return false;
	}
	if (f.content.value=='')
	{
		alert('Introduceti comentariul!');
		return false;
	}
	return true;
}