function checkForm() {
	with (document.send) {
		if (file.value=='') {
			alert('Выберите файл');	
			return false;
		}
		if (content.value==false) {
			alert('Введите коментарий');
			return false;
		}
	}
}