/*
 * lib_register_profile_edit_common.js :	Register and profile edit common functions
 *
*/

var OMCHAT_USER_ACCOUNT_TYPE_PERSONAL = 1;
var OMCHAT_USER_ACCOUNT_TYPE_COMPANY = 2;

function register_account_type_onchange(radio_em)
{
	var personal_container_em = getElement('omchat_register_personal_information_container');
	// show `Personal Information` section
	if( radio_em.value == OMCHAT_USER_ACCOUNT_TYPE_PERSONAL )
	{
		personal_container_em.style.display = 'block';
	}
	// show Company Information` section
	else if( radio_em.value == OMCHAT_USER_ACCOUNT_TYPE_COMPANY )
	{
		personal_container_em.style.display = 'none';
	}
}