// JavaScript Document

// Functions for Type of firm entry
function showOther1() {
	FirmOther.style.display = "";
	FirmInd.style.display = "none";
}
function showIV() {
	FirmInd.style.display = "";
	FirmOther.style.display = "none";
		
}
function showFT() {
	FirmInd.style.display = "none";
	FirmOther.style.display = "none";
		
}

// Functions for Primary Custodian or Broker/Dealer
function showOther2() {
	PCOther.style.display = "";
}

function showPC() {
	PCOther.style.display = "none";
		
}

// Functions for Primary Portfolio Management System
function showOther3() {
	PMOther.style.display = "";
}

function showPPM() {
	PMOther.style.display = "none";
		
}

// Functions for Primary Financial Planning System
function showOther4() {
	PFOther.style.display = "";
}

function showPFM() {
	PFOther.style.display = "none";
}

// Functions for Where Did You Hear About Us
function showOther5() {
	WHOther.style.display = "";
}

function showWYH() {
	WHOther.style.display = "none";
}
