
//================================================================
// If the agent has more than 5 market areas, then a more... link is displayed to expand the "market_area_listing"
function expandMarketArea() {
	document.getElementById('market_area_listing').style.height = '';
	document.getElementById('market_area_listing').style.overflow = 'auto';
	document.getElementById('more_market_link').style.display = 'none';
	document.getElementById('less_market_link').style.display = 'block';
}

function collapseMarketArea() {
	document.getElementById('market_area_listing').style.height = '70px';
	document.getElementById('market_area_listing').style.overflow = 'hidden';
	document.getElementById('more_market_link').style.display = 'block';
	document.getElementById('less_market_link').style.display = 'none';
}

function grab_mapmyZIPCode() {
	var winMapInfo = "/sitelib/map/index.html"
   var myWinURL = winMapInfo;
   var myWinName = "ZIPCodeMapping";
   var myWinFeatures = "width=680,height=680";
   var ZIPCodeMapping = window.open(winMapInfo, myWinName, myWinFeatures);
}

function clearBox(box) {
	if(box.value==box.defaultValue) {
		box.value = "";
	}
}



