function Send()
{
	with(document.DATA)
	{
		if(fio.value == '')
		{
    		alert('Пожалуйста, укажите Вашу фамилию, имя и отчество');
			fio.focus();
		}
		else if(phone.value == '')
		{
			alert('Пожалуйста, укажите контактный телефон с кодом города');
			phone.focus();
		}
		else if(region.value == '')
		{
			alert('Пожалуйста, укажите Место отдыха');
			region.focus();
		}
		else
		{
			submit();
		}	
	}
}
// Запуск повременной смены текста в слое
function initDynText()
{
	document.getElementById('dyntext').innerHTML = dtext[current];
	document.getElementById('dyntext').style.color = colors[current];
	document.getElementById('dyntext').style.backgroundColor = bgcolors[current];
	if(current < 4)
	{
		current++;
	}
	else
	{
		current = 0;
	}
	var tid = setTimeout("initDynText()", 2500);
	return true;
}

