function CheckEmailForm()
{
	msg="Не заполнены следующие поля";
	msg1=msg;

	if (document.EmailForm.from.value=="") {msg+="\n - Ваш E-mail";}
	if (document.EmailForm.text.value=="") {msg+="\n - Текст";}

	if (msg != msg1)
	{
		alert(msg);
		return false;
	}
	return true;
}

function CheckSMSForm()
{
	msg="Не заполнены следующие поля";
	msg1=msg;
	
	if (document.SMSForm.from.value=="") {msg+="\n - Ваш моб.номер";}
	if (document.SMSForm.text.value=="") {msg+="\n - Текст";}
	
	if (msg != msg1)
	{
		alert(msg);
		return false;
	}
	return true;
}
lastH="";
lastSMSH="";

function ShowSendEmail(header)
{
	switch (header)
	{
	 case "Htech":email="support@it-luxe.com";break;
	 case "Hmain":email="info@it-luxe.com";break;
	 case "Hdesign":email="design@it-luxe.com";break;
	}

	document.EmailForm.TO_EMAIL.value=email;
	lastH=header;
	document.getElementById('Contacts').style.display="none";
	document.getElementById('SendEmail').style.display="block";
	document.getElementById(header).style.display="block";
}

function RestoreEmail()
{
	document.getElementById('SendEmail').style.display="none";
	document.getElementById('Contacts').style.display="block";
	document.getElementById(lastH).style.display="none";
}

function ShowSendSMS(header)
{
	switch (header)
	{
		 case "HSMStech":mob="380979677372";break;
		 case "HSMSmain":mob="380679894285";break;
		 case "HSMSdesign":mob="380679894285";break;
	}

	document.SMSForm.TO_MOB.value=mob;
	
	lastSMSH=header;
	document.getElementById('Contacts').style.display="none";
	document.getElementById('SendSMS').style.display="block";
	document.getElementById(header).style.display="block";
}

function RestoreSMS()
{
	document.getElementById('SendSMS').style.display="none";
	document.getElementById('Contacts').style.display="block";
	document.getElementById(lastSMSH).style.display="none";
}
