//Posting functions
function ChildCategoryPost($application_ref, $user_ref, $parent_category_ref, $child_category_ref){
	var $formpost = document.getElementById('FormPost');
	$formpost.application_ref.value 	= $application_ref;
	$formpost.user_ref.value 		= $user_ref;
	$formpost.parent_category_ref.value 	= $parent_category_ref;
	$formpost.child_category_ref.value 	= $child_category_ref;
	//$formpost.securitytoken.value		= "h332774321hdsDl1JSj3jhDHhwSh562DiI78I9ll0i432lk32jNjnNl1l1l342NJKbsqawxp2n";
	$formpost.submit();
}

function ParentCategoryPost($application_ref, $user_ref, $parent_category_ref){
	var $formpost = document.getElementById('FormPost');
	$formpost.application_ref.value 	= $application_ref;
	$formpost.user_ref.value 		= $user_ref;
	$formpost.parent_category_ref.value 	= $parent_category_ref;
	$formpost.child_category_ref.value 	= 0;
	//$formpost.securitytoken.value		= "h332774321hdsDl1JSj3jhDHhwSh562DiI78I9ll0i432lk32jNjnNl1l1l342NJKbsqawxp2n";
	$formpost.submit();
}

function AmazonCountryPost($selected_amazon_country_code){
	if ($selected_amazon_country_code == 0){
		// nothing to do, the selected country code is already the default
		return;
	}
	var $formpost = document.getElementById('FormPost');
	//$formpost.securitytoken.value					= "h332774321hdsDl1JSj3jhDHhwSh562DiI78I9ll0i432lk32jNjnNl1l1l342NJKbsqawxp2n";
	$formpost.selected_amazon_country_code.value 	= $selected_amazon_country_code;
	// the forms other submitted values are the same as previously selected ie already set & as regards them we're simply refreshing the page
	$formpost.submit();
}

