// JavaScript Document

var btnState = 0;

function resetOutLinks() {   // reset the outlinks for www.lakeburtononline.com
	if (displayAgent != 'all') {
		var eObj = document.getElementById('ALFLR');
		eObj.href = 'http://www.lakerabunonline.com?agent=' + displayAgent;
		var eObj = document.getElementById('ALFLS');
		eObj.href = 'http://www.lakeseedonline.com?agent=' + displayAgent;
	}
}

function switchSel(Flg) {
	clearBtn();
	switch (Flg) {
		case 'Home':
			setHome();
			break;
		case 'Land':
			setLand();
			break;
		case 'View':
			setView();
			break;
	}
}

function clearBtn() {
	switch (btnState) {
		case 0:
			btnObj = document.getElementById("dH");
			break;
		case 1:
			btnObj = document.getElementById("dL");
			break;
		case 2:
			btnObj = document.getElementById("dV");
			break;
	}
	btnObj.style.backgroundColor = "#CCFF33";
}

function setHome() {
	btnState = 0;
	btnObj = document.getElementById("dH");
	btnObj.style.backgroundColor = "#00FF00";
}

function setLand() {
	btnState = 1;
	btnObj = document.getElementById("dL");
	btnObj.style.backgroundColor = "#00FF00";
}

function setView() {
	btnState = 2;
	btnObj = document.getElementById("dV");
	btnObj.style.backgroundColor = "#00FF00";
}