﻿function register_check_all(){
	this.gname = false;
	this.fname = false;
	this.email = false;	
	this.company = false;
	this.country = false;	
	
	this.pname = false;
	this.pspe = false;
	this.porder = false;
}

var bln_check = new register_check_all();

function check_gname(){
	var str=byId('textfield9').value;
	byId('gname_e').style.display='none';
	//byId('gname_o').style.display='none';
	if (!isEmpty(str)){
		//byId('gname_o').style.display='block';
		bln_check.gname=true;
	}else{
		byId('gname_e').style.display='block';
		bln_check.gname=false;
	}
}

function check_fname(){
	var str=byId('textfield22').value;
	byId('fname_e').style.display='none';
	//byId('fname_o').style.display='none';
	if (!isEmpty(str)){
		//byId('fname_o').style.display='block';
		bln_check.fname=true;
	}else{
		byId('fname_e').style.display='block';
		bln_check.fname=false;
	}
}

function check_email(){
	var str=byId('textfield32').value;
	byId('email_n').style.display='none';
	byId('email_e').style.display='none';
	byId('email_o').style.display='none';
	if (isEmpty(str)){
		byId('email_n').style.display='block';
		bln_check.email=false;
	}else{
		if (isEmail(str)){
			byId('email_o').style.display='block';
			bln_check.email = true;
		}else{
			byId('email_e').style.display='block';
			bln_check.email = false;
		}
	}
}

function check_company(){
	var str=byId('textfield4222').value;
	byId('company_e').style.display='none';
	byId('company_o').style.display='none';
	
	if (!isEmpty(str)){
		byId('company_o').style.display='block';
		bln_check.company=true;
	}else{
		byId('company_e').style.display='block';
		bln_check.company=false;
	}
}

function check_country(){
	var str=byId('textfield4225').value;
	byId('country_e').style.display='none';
	byId('country_o').style.display='none';
	
	if (!isEmpty(str)){
		byId('country_o').style.display='block';
		bln_check.country=true;
	}else{
		byId('country_e').style.display='block';
		bln_check.country=false;
	}
}

function check_pname(){
	var str=byId('textfield86').value;
	byId('pname_e').style.display='none';
	byId('pname_o').style.display='none';
	if (!isEmpty(str)){
		byId('pname_o').style.display='block';
		bln_check.pname=true;
	}else{
		byId('pname_e').style.display='block';
		bln_check.pname=false;
	}
}

function check_pspe(){
	var str=byId('textfield822').value;
	byId('pspe_e').style.display='none';
	byId('pspe_o').style.display='none';
	if (!isEmpty(str)){
		byId('pspe_o').style.display='block';
		bln_check.pspe=true;
	}else{
		byId('pspe_e').style.display='block';
		bln_check.pspe=false;
	}
}

function check_porder(){
	var str=byId('textfield842').value;
	byId('porder_e').style.display='none';
	byId('porder_o').style.display='none';
	if (isInteger(str)){
		byId('porder_o').style.display='block';
		bln_check.porder=true;
	}else{
		byId('porder_e').style.display='block';
		bln_check.porder=false;
	}
}

function on_submit(){
	check_gname();
	check_fname();
	check_email();
	check_company();
	check_country();
	check_pname();
	check_pspe();
	check_porder();
	return (bln_check.gname && bln_check.fname && bln_check.email && bln_check.company && bln_check.country && bln_check.pname && bln_check.pspe && bln_check.porder);
}
