function goSection(form)
	{
	href = form.value
	if (href == "---") return;
	parent.location.href=form.value;
	}	
	
function selectScopeBibliography(form)
	{
	value = form.value;
	switch (value){
	case "ss_format":
		{
		keyformat.style.display ="";
		keytext.style.display ="none";										
		break;
		}
	default : 
		{
		keyformat.style.display ="none";
		keytext.style.display ="";
		}
	} // End Switch

	}	
	
function selectScopeBibliography2(form)
	{
	value = form.value;
	switch (value){
	case "ss_format":
		{
		keyformat2.style.display ="";
		keytext2.style.display ="none";										
		break;
		}
	default : 
		{
		keyformat2.style.display ="none";
		keytext2.style.display ="";
		}
	} // End Switch

	}		

function selectCountryScope() {
	form = document.ArchiveNavForm;
	cIDCount = form.COUNTRY_ID_COUNT.value;
	maxCID = form.MAX_COUNTRY_ID.value;
	
	for( i=1; i<=maxCID; i++) {
		if( typeof this[ "country_" + i ] == "undefined" ) {
			//nada
		} else {
			aCtrl = this[ "country_" + i ];
			aCtrl.style.display = "none";
		}
	}
	cID = form.COUNTRY_ID.value;
	thisCtrl = this[ "country_" + cID ];
	thisCtrl.style.display = "";
}

function selectCountryScopeCreate() {
	form = document.ArchiveCreateForm;
	cIDCount = form.COUNTRY_ID_COUNT.value;
	
	for( i=1; i<=cIDCount; i++) {
		aCtrl = eval("AcreateCountry_" + i );
		aCtrl.style.display = "none";
	}
	
	cID = form.COUNTRY_ID.value;
	thisCtrl = eval("AcreateCountry_" + cID );
	thisCtrl.style.display = "";
}