function vote(work_id)
{
	new Phpr_Request({
		handler:'ev{contest_OnVote}',
		update: 'multi',
		postBody: {'work_id': work_id},
		onSuccess: function(){ alert('Ваш голос был принят') }
	});
}

function validate_post()
{
	if (!$('Author').value.trim().length)
	{
		alert('Пожалуйста, заполните поле Автор');
		$('Author').focus();
		return false;
	}
	
	if (!$('Photo').value.trim().length)
	{
		alert('Пожалуйста, выберите файл фотографии');
		$('Photo').focus();
		return false;
	}

	return true;
}