function tHL( obj, ON )
{
	if( document.getElementById )
		{
			var button = document.getElementById( obj );
				if( ON )
					{
						button.style.backgroundColor = "#de1218";
					}
				else
					{
					button.style.backgroundColor = "#ebfae5";
					}
		}
}

function tHL2( obj, ON )
{
	if( document.getElementById )
		{
			var button = document.getElementById( obj );
				if( ON )
					{
						button.style.backgroundColor = "#f0c300";
					}
				else
					{
					button.style.backgroundColor = "#ebfae5";
					}
		}
}

function tHL3( obj, ON )
{
	if( document.getElementById )
		{
			var button = document.getElementById( obj );
				if( ON )
					{
						button.style.backgroundColor = "#64a61e";
					}
				else
					{
					button.style.backgroundColor = "#ebfae5";
					}
		}
} 

function tHL4( obj, ON )
{
	if( document.getElementById )
		{
			var button = document.getElementById( obj );
				if( ON )
					{
						button.style.backgroundColor = "#008b39";
					}
				else
					{
					button.style.backgroundColor = "#ebfae5";
					}
		}
}
function tHL5( obj, ON )
{
	if( document.getElementById )
		{
			var button = document.getElementById( obj );
				if( ON )
					{
						button.style.backgroundColor = "#e4802a";
					}
				else
					{
					button.style.backgroundColor = "#ebfae5";
					}
		}
}
function tHL6( obj, ON )
{
	if( document.getElementById )
		{
			var button = document.getElementById( obj );
				if( ON )
					{
						button.style.backgroundColor = "#df5234";
					}
				else
					{
					button.style.backgroundColor = "#ebfae5";
					}
		}
}
function tHL7( obj, ON )
{
	if( document.getElementById )
		{
			var button = document.getElementById( obj );
				if( ON )
					{
						button.style.backgroundColor = "#34516f";
					}
				else
					{
					button.style.backgroundColor = "#ebfae5";
					}
		}
}
	function check_form()
		{
			
			if( document.forms.FormOrder.UserComments.value == "" )
				{
					alert("Заполните поле: Сообщение");
					document.forms.FormOrder.UserComments.focus();
					return false;
				}
			
			if( document.forms.FormOrder.UserPhoneprice.value == "" )
				{
					alert("Заполните поле: Телефон");
					document.forms.FormOrder.UserPhoneprice.focus();
					return false;
				}
				
			if( document.forms.FormOrder.UserEmailprice.value == "" )
				{
					alert("Заполните поле: E-mail");
					document.forms.FormOrder.UserEmailprice.focus();
					return false;
				}

			return true;

		}