﻿  


function load_big_img(a) {

      document.getElementById('img_main').innerHTML = '<img class="border" src="'+a+'" border="0" />';  
}



function f_order_s()
{
                        if (document.getElementById('fio').value=="") 
                        {
                                alert('Укажите ФИО');
                                document.getElementById('fio').focus();

                                return false;
                        }
                        else if (!isValidPhone(document.getElementById('tel').value,1))
                        {
                                alert('Укажите контактный номер телефона');
                                document.getElementById('tel').focus();
                                return false;
                        }
                        else if (!isValidEmail(document.getElementById('email').value,0))
                        {
                                alert('Укажите контактный E-mail');
                                document.getElementById('email').focus();
                                return false;
                        }
                        else if (document.getElementById('sdate').value=="")
                        {
                                alert('Укажите дату заезда');
//                                document.getElementById('email').focus();
                                return false;
                        }

                        return true;
}


function f_bronMain_s()
{

                        if (!isValidPhone(document.getElementById('maxcost').value,1))
                        {
                                alert('Укажите макс. стоимость проживания на 1 чел.');
                                document.getElementById('maxcost').focus();
                                return false;
                        }

                        return true;

}



