function enableFields(form,field)
{
	if((field.value) == "altAddress")
	{		
		document.getElementById("Addr1Label").style.color = "Black";
		document.getElementById("Addr2Label").style.color = "Black";
		document.getElementById("CityLabel").style.color = "Black";
		document.getElementById("StateLabel").style.color = "Black";
		document.getElementById("ZipLabel").style.color = "Black";
		
		form.addr1.style.backgroundColor = "White";
		form.addr2.style.backgroundColor = "White";
		form.city.style.backgroundColor = "White";
		form.state.style.backgroundColor = "White";
		form.zip.style.backgroundColor = "White";
		
		form.addr1.disabled = false;
		form.addr2.disabled = false;
		form.city.disabled = false;
		form.state.disabled = false;
		form.zip.disabled = false;
	}
	
	if((field.value) == "acctAddress")
	{
		document.getElementById("Addr1Label").style.color = "Gray";
		document.getElementById("Addr2Label").style.color = "Gray";
		document.getElementById("CityLabel").style.color = "Gray";
		document.getElementById("StateLabel").style.color = "Gray";
		document.getElementById("ZipLabel").style.color = "Gray";
		
		form.addr1.style.backgroundColor = "Gray";
		form.addr2.style.backgroundColor = "Gray";
		form.city.style.backgroundColor = "Gray";
		form.state.style.backgroundColor = "Gray";
		form.zip.style.backgroundColor = "Gray";
		
		form.addr1.disabled = true;
		form.addr2.disabled = true;
		form.city.disabled = true;
		form.state.disabled = true;
		form.zip.disabled = true;
		
		form.addr1.value = "";
		form.addr2.value = "";
		form.city.value = "";
		form.state.value = "";
		form.zip.value = "";
	}
}

function selectMethod()
{
	if (document.bolForm.requestMethod[0].checked)
	{
		document.location="1099_copy_Verification.html";
	}
	
	if (document.bolForm.requestMethod[1].checked)
	{
		document.location="1099_copy_VerificationAlt.html";
	}
}

function selectMethodR()
{
	if (document.bolForm.requestMethod[0].checked)
	{
		document.location="1099R_copy_Verification.html";
	}
	
	if (document.bolForm.requestMethod[1].checked)
	{
		document.location="1099R_copy_VerificationAlt.html";
	}
}