// JavaScript Document

function section(name)
{
	document.getElementById('Section1').style.display = "none";
	document.getElementById('Section2').style.display = "none";
	document.getElementById('Section3').style.display = "none";
	document.getElementById('Section4').style.display = "none";
	document.getElementById('Section5').style.display = "none";
	document.getElementById(name).style.display = "block";	
	return false;
}

function checkClassification()
{
	if(document.getElementById('OrgClassification').value == 7)
	{
		document.getElementById('ClassificationSpecify').style.display = "block";		
	}
	else
	{
		document.getElementById('ClassificationSpecify').style.display = "none";
	}
	
}

function checkIndividualOrganization()
{
	if(document.getElementById('OrganizationID').value == 0)
	{
		document.getElementById('IndividualOrganizationSpecify').style.display = "block";
		document.getElementById('OrganizationSpecify').value = "";
	}
	else
	{
		document.getElementById('IndividualOrganizationSpecify').style.display = "none";
		document.getElementById('OrganizationSpecify').value = "";
	}
	
}

function checkContract(ContractValue)
{
	
	if(ContractValue == 'yes')
	{
		document.getElementById('OrgContractCheck').style.display = "block";		
	}
	else
	{
		document.getElementById('OrgContractCheck').style.display = "none";
	}
	
}

function checkIndividualAffiliation(ContractValue)
{
	
	if(ContractValue == 'yes')
	{
		document.getElementById('individualSchoolAffiliatedSpecify').style.display = "block";
		document.getElementById('SchoolAffiliatedSpecify').innerHTML = "";
	}
	else
	{
		document.getElementById('individualSchoolAffiliatedSpecify').style.display = "none";
		document.getElementById('SchoolAffiliatedSpecify').innerHTML = "";
	}
	
}

function checkIndividualeducationSeminar(ContractValue)
{
	
	if(ContractValue == 'yes')
	{
		document.getElementById('individualeducationSeminar').style.display = "block";
		document.getElementById('educationSeminarSpecify').innerHTML = "";
	}
	else
	{
		document.getElementById('individualeducationSeminar').style.display = "none";
		document.getElementById('educationSeminarSpecify').innerHTML = "";
	}
	
}

function hideSection(whichSection)
{
	if(document.getElementById(whichSection).style.display == 'none')
	{
		document.getElementById(whichSection).style.display = "block";		
	}
	else
	{
		document.getElementById(whichSection).style.display = "none";
	}
	
}

function checkYesorNo(WhichOption, whichSection)
{
	if(WhichOption == 'yes')
	{
		document.getElementById(whichSection).style.display = "block";		
	}
	else
	{
		document.getElementById(whichSection).style.display = "none";
	}
	
}

function oneORother(hideSection, showSection)
{
		document.getElementById(showSection).style.display = "block";		
		document.getElementById(hideSection).style.display = "none";
}