function showunitwindow(n){
msg=window.open("unit.php?unit="+n,"unit"+n,"toolbar=no,directories=no,menubar=no,scrollbars=yes,status=yes,resizable=no,width=720,height=600");
}

function orderconfirm(){

cname=document.sendform.clientname.value;
cmail=document.sendform.clientmail.value;
cphone=document.sendform.clientphone.value;
      
if (cname.length==0) { alert('Пожалуйста, введите Ваше имя!'); return(false);}
if ((cmail.length==0)&&(cphone.length==0)) { alert('Пожалуйста, введите контактный  телефон или e-mail!'); return(false);}
if (((cmail.indexOf("@")==-1) || (cmail.indexOf(".")==-1))&&(cmail.length>0)) { alert('Пожалуйста, введите корректный e-mail!'); return(false);}
if ((cphone.length!=0) && (cphone.length<7)) { alert('Пожалуйста, введите корректный номер телефона! \n (в формате код страны - код города - номер)'); return(false);}

document.sendform.submit();
return(true);
}  


function showsocial(id)
{
all=6;
for (i=1;i<all; i++)
 {
   s=document.getElementById('soc'+i);
   if (s)
   {
      if (i==id)
       {
         if (s.style.display == 'block') s.style.display='none';
            else s.style.display='block';
       }
       else s.style.display='none';
   }
 }
}   

