// JavaScript Document
var d=document;

function class_n(id,cl) {
	var obj=(typeof(id)=='string') ? d.getElementById(id) : id;
	
	obj.className=cl;	
}
function display(id,fl) {
	var obj=(typeof(id)=='string') ? d.getElementById(id) : id;
	
	obj.style.display=(fl) ? 'block' : 'none';
}

function tm_btn_mouse(obj,fl,cl) {
	var arr_child=new Array();
	for (var i=0; i<obj.childNodes.length; i++) {
		if (obj.childNodes[i].nodeType==1 && obj.childNodes[i].nodeName!='SPAN') arr_child[arr_child.length]=obj.childNodes[i];
	}
	
	if (arr_child[0] && cl) class_n(arr_child[0],cl);
	if (arr_child[1]) display(arr_child[1],fl);
}

function check_send_form() {
	var bool = true;
	
	if (document.form_send.f_name.value == 'ИМЯ') {
		document.form_send.f_name.style.backgroundColor = '#FFB879';
		bool = false;
	} else {
		document.form_send.f_name.style.backgroundColor = '#FFFFFF'
		if (document.form_send.phone.value == 'ТЕЛЕФОН') {
			document.form_send.phone.style.backgroundColor = '#FFB879';
			bool = false;
		} else { 
			document.form_send.phone.style.backgroundColor = '#FFFFFF';
			if (document.form_send.e_mail.value == 'E-MAIL') {
				document.form_send.e_mail.style.backgroundColor = '#FFB879';
				bool = false;
			} else {
				document.form_send.e_mail.style.backgroundColor = '#FFFFFF';
				if (document.form_send.message.value == 'ТЕКСТ СООБЩЕНИЯ') {
					document.form_send.message.style.backgroundColor = '#FFB879';
					bool = false;
				} else {
					document.form_send.message.style.backgroundColor = '#FFFFFF';
					if (document.form_send.f_region.value == 'РЕГИОН') {
						document.form_send.f_region.style.backgroundColor = '#FFB879';
						bool = false;
					} else {
						document.form_send.f_region.style.backgroundColor = '#FFFFFF';
						if (document.form_send.f_city.value == 'ГОРОД') {
							document.form_send.f_city.style.backgroundColor = '#FFB879';
							bool = false;
						} else {
							document.form_send.f_city.style.backgroundColor = '#FFFFFF';
						}
					}
				}
			}
		}
	}
	if (!bool) {
		document.getElementById('fill').style.visibility = 'visible';
	}
	return bool;
}

function clear_send_form() { 
	document.form_send.f_name.style.backgroundColor = '#FFFFFF';
	document.form_send.phone.style.backgroundColor = '#FFFFFF';
	document.form_send.e_mail.style.backgroundColor = '#FFFFFF';
	document.form_send.message.style.backgroundColor = '#FFFFFF';
	document.form_send.f_name.value='ИМЯ'; 
	document.form_send.phone.value='ТЕЛЕФОН'; 
	document.form_send.e_mail.value='MAIL'; 
	document.form_send.message.value='ТЕКСТ СООБЩЕНИЯ';
	document.getElementById('fill').style.visibility = 'hidden';
}

function check_auth_form() {
	var bool = true;

	document.form_auth.login.style.backgroundColor = '#FFFFFF';
	document.form_auth.password.style.backgroundColor = '#FFFFFF';
	if (document.form_auth.login.value == 'ЛОГИН') {
		document.form_auth.login.style.backgroundColor = '#FFB879';
		bool = false;
	} else if (document.form_auth.password.value == 'ПАРОЛЬ') {
		document.form_auth.password.style.backgroundColor = '#FFB879';
		bool = false;
	}

	return bool;
}

function check_reg_form() {
	var bool = true;
	if (document.form_send.fname.value == 'ИМЯ') {
		document.form_send.fname.style.backgroundColor = '#FFB879';
		bool = false;
	} else {
		document.form_send.fname.style.backgroundColor = '#FFFFFF'
		if (document.form_send.lname.value == 'ФАМИЛИЯ') {
			document.form_send.lname.style.backgroundColor = '#FFB879';
			bool = false;
		} else { 
			document.form_send.lname.style.backgroundColor = '#FFFFFF';
			if (document.form_send.phone.value == 'ТЕЛЕФОН') {
				document.form_send.phone.style.backgroundColor = '#FFB879';
				bool = false;
			} else {
				document.form_send.phone.style.backgroundColor = '#FFFFFF';
				if (document.form_send.email.value == 'E-MAIL') {
					document.form_send.email.style.backgroundColor = '#FFB879';
					bool = false;
				} else {
					document.form_send.email.style.backgroundColor = '#FFFFFF';
					if (document.form_send.distribution_num.value == 'ДИСТРИБЬЮТОРСКИЙ №') {
						document.form_send.distribution_num.style.backgroundColor = '#FFB879';
						bool = false;
					} else {
						document.form_send.distribution_num.style.backgroundColor = '#FFFFFF';
						if (document.form_send.sponsor_num.value == '№ СНОНСОРА') {
							document.form_send.sponsor_num.style.backgroundColor = '#FFB879';
							bool = false;
						} else {
							document.form_send.sponsor_num.style.backgroundColor = '#FFFFFF';
						}
					}
				}
			}
		}
	}
	if (!bool) {
		document.getElementById('fill').style.visibility = 'visible';
	}
	return bool;
}

function clear_reg_form() { 
	document.form_send.fname.style.backgroundColor = '#FFFFFF';
	document.form_send.lname.style.backgroundColor = '#FFFFFF';
	document.form_send.phone.style.backgroundColor = '#FFFFFF';
	document.form_send.email.style.backgroundColor = '#FFFFFF';
	document.form_send.distribution_num.style.backgroundColor = '#FFFFFF';
	document.form_send.sponsor_num.style.backgroundColor = '#FFFFFF';
	document.form_send.fname.value = 'ИМЯ';
	document.form_send.lname.value = 'ФАМИЛИЯ';
	document.form_send.phone.value = 'ТЕЛЕФОН';
	document.form_send.email.value = 'E-MAIL';
	document.form_send.distribution_num.value = 'ДИСТРИБЬЮТОРСКИЙ №';
	document.form_send.sponsor_num.value = '№ СНОНСОРА';
	document.getElementById('fill').style.visibility = 'hidden';
}