	var xmlDoc;
	if(window.XMLHttpRequest){
		xhttp = new XMLHttpRequest();
	}
	else{ // Internet Explorer 5/6
		xhttp = new ActiveXObject("Microsoft.XMLHTTP");
	}
	xhttp.open("GET","../apps/gap_gauge/xml/chartData-dec-10.xml",false); //load all data for the index
	xhttp.send("");
	xmlDoc=xhttp.responseXML; 
	var xChartData=xmlDoc.getElementsByTagName("MSA");
	
	var xmlDoc2;
	if(window.XMLHttpRequest){
		xhttp = new XMLHttpRequest();
	}
	else{ // Internet Explorer 5/6
		xhttp = new ActiveXObject("Microsoft.XMLHTTP");
	}
	xhttp.open("GET","xml/moodys-dec-10.xml",false); //load all data for the index
	xhttp.send("");
	xmlDoc2=xhttp.responseXML; 
	var moodys=xmlDoc2.getElementsByTagName("MSA");	

function YoYSelect(msa)
{
	var MSANames = ["Atlanta","Boston","Charlotte","Chicago","Cleveland","Dallas","Denver","Detroit","Las Vegas","Los Angeles","Miami","Minneapolis","New York","Phoenix","Portland","San Diego","San Francisco","Seattle","Tampa","Washington, DC","Composite-10","Composite-20","U.S. National"];
	var MSAid = ["ATL","BOS","CHAR","CHI","CLEV","DAL","DEN","DET","LV","LA","MIA","MINN","NY","PHO","PORT","SD","SF","SEA","TAM","DC","TEN","TWEN","US"];
	
	ChartUpdater = "<chart subcaption='' caption='" + MSANames[msa] + "' mmcaption='' YAxisName='YoY % Change' showYAxisValues='1' showLegend='1' showvalues='0' showLabels='1' numberSuffix='%' labelStep='24' exportEnabled='1' exportAtClient='0' exportHandler='../apps/gap_gauge/ExportHandlers/ASP_Net/FCExporter.aspx' baseFontSize='10' useRoundEdges='1' showExportDataMenuItem='0' exportAction='download' exportFileName='MacroMarkets Gap Gauge' showAboutMenuItem='0' aboutMenuItemLabel='MacroMarkets LLC' aboutMenuItemLink='http://www.macromarkets.com' adjustDiv='1' setAdaptiveYMin='0' showToolTip='1'>\ <styles>\ <definition>\ <style name='myValuesFont' type='font' size='8' bold='0'/>\ <style name='Title' type='font' size='12' bold='1'/>\ <style name='SubTitle' type='font' size='10' bold='0'/>\ </definition>\ <application>\ <apply toObject='CAPTION' styles='Title' />\ <apply toObject='SUBCAPTION' styles='subTitle' />\	<apply toObject='DATALABELS' styles='myValuesFont' />\ </application>\ </styles>\ <categories>";
	
	start = 0;
						
	for(j = xChartData.length-1; j > 0; j--){
		if(xChartData[j].getElementsByTagName(MSAid[msa]+"_INDEX")[0].childNodes[0].nodeValue != 0)
			start = j + 11;
	}
	
	for(i = start; i < xChartData.length; i++){
		ChartUpdater += "<category label='" + xChartData[i].getElementsByTagName('YEAR')[0].childNodes[0].nodeValue + "' />";				
	}
	
	if(msa != 22){
	//add 5 extra years for Moody's Forecast
		//var d = new Date();
		for(i = 0; i < moodys.length; i++){
			ChartUpdater += "<category label='" + moodys[i].getElementsByTagName('YEAR')[0].childNodes[0].nodeValue + "' />";			
		}
	}
		
	ChartUpdater += "</categories>\ <dataset SeriesName='" + MSANames[msa] + "' renderAs='Line' anchorAlpha='0' Color='6E7740' lineThickness='3'>";
			
	offset = 0;
	
	for(j = start; j < xChartData.length; j++){
		if(xChartData[j].getElementsByTagName(MSAid[msa]+"_INDEX")[0].childNodes[0].nodeValue == 0){
			ChartUpdater += "<set value='' />";
		}
		else if(xChartData[j-12].getElementsByTagName(MSAid[msa]+"_INDEX")[0].childNodes[0].nodeValue == 0){
			ChartUpdater += "<set value='' />";
		}
		else{
			YoY = ((xChartData[j].getElementsByTagName(MSAid[msa]+"_INDEX")[0].childNodes[0].nodeValue / xChartData[j-12].getElementsByTagName(MSAid[msa]+"_INDEX")[0].childNodes[0].nodeValue) - 1) * 100;
			ChartUpdater += "<set value='" + YoY + "' toolText='YoY % Change'/>";
		}
	}
	
	if(msa != 22){
		ChartUpdater += "</dataset>\ <dataset SeriesName='Forecast*' renderAs='Line' anchorAlpha='0' Color='991429' lineThickness='3'>";
		for(j = 0; j < xChartData.length - start; j++){
			ChartUpdater += "<set value='' />";
		}
		
		ChartUpdater += "<set value='" + YoY + "' toolText='YoY % Change'/>";
		
		for(j = 0; j < moodys.length; j++){
			ChartUpdater += "<set value='" + moodys[j].getElementsByTagName(MSAid[msa])[0].childNodes[0].nodeValue + "' toolText='Forecast'/>";
		}
	}
	
	ChartUpdater += "</dataset>\ </chart>";
	
	var myChart = new FusionCharts("../apps/gap_gauge/FusionCharts/MSCombi2D.swf", "Chart", "449", "250", "0", "1");	
	myChart.setDataXML(ChartUpdater.valueOf());									
	myChart.render("YoYChart");	
	
	if(msa != 22)
		document.getElementById("toggle").innerHTML="<table id='toggleTable' class='nav' width='448'><tr><td align='left'><span class='footnote'>*Moody's Analytics<br>As of December 2010</span></td><td width='100'></td><th align='right'>Toggle Chart:</th><td><form STYLE='margin: 0px; padding: 0px;'><input type='radio' name='group1' value='Index' onclick='javascript:IndexSelect("+msa+")' > Index <input type='radio' name='group1' value='YoY' onclick='YoYSelect("+msa+")' checked> % Chg </form></td></tr></table><br>";
	else
		document.getElementById("toggle").innerHTML="<table id='toggleTable' class='nav' width='448'><tr><td align='left'>&nbsp;</td><td width='200'>&nbsp;</td><th align='right'>Toggle Chart:</th><td><form STYLE='margin: 0px; padding: 0px;'><input type='radio' name='group1' value='Index' onclick='javascript:IndexSelect("+msa+")' > Index <input type='radio' name='group1' value='YoY' onclick='YoYSelect("+msa+")' checked> % Chg </form></td></tr></table><br>";
	
	mapCounties(msa);
}	

function IndexSelect(msa)
{
	var MSANames = ["Atlanta","Boston","Charlotte","Chicago","Cleveland","Dallas","Denver","Detroit","Las Vegas","Los Angeles","Miami","Minneapolis","New York","Phoenix","Portland","San Diego","San Francisco","Seattle","Tampa","Washington, DC","Composite-10","Composite-20","U.S. National"];
	var MSAid = ["ATL","BOS","CHAR","CHI","CLEV","DAL","DEN","DET","LV","LA","MIA","MINN","NY","PHO","PORT","SD","SF","SEA","TAM","DC","TEN","TWEN","US"];
	
	ChartUpdater = "<chart subcaption='' caption='" + MSANames[msa] + "' mmcaption='' YAxisName='Index' showYAxisValues='1' showLegend='1' showvalues='0' showLabels='1' labelStep='24' exportEnabled='1' exportAtClient='1' exportHandler='../apps/gap_gauge/ExportHandlers/ASP_Net/FCExporter.aspx' baseFontSize='10' useRoundEdges='1' exportFileName='MacroMarkets Gap Gauge' showExportDataMenuItem='0' exportAction='download' showAboutMenuItem='0' aboutMenuItemLabel='MacroMarkets LLC' aboutMenuItemLink='http://www.macromarkets.com' adjustDiv='1' setAdaptiveYMin='0' showToolTip='1'>\ <styles>\ <definition>\ <style name='myValuesFont' type='font' size='8' bold='0'/>\ <style name='Title' type='font' size='12' bold='1'/>\ <style name='SubTitle' type='font' size='10' bold='0'/>\ </definition>\ <application>\ <apply toObject='CAPTION' styles='Title' />\ <apply toObject='SUBCAPTION' styles='subTitle' />\	<apply toObject='DATALABELS' styles='myValuesFont' />\ </application>\ </styles>\ <categories>";
	
	start = 0;
						
	for(j = xChartData.length-1; j > 0; j--){
		if(xChartData[j].getElementsByTagName(MSAid[msa]+"_INDEX")[0].childNodes[0].nodeValue != 0)
			start = j;
	}
	
	for(i = start; i < xChartData.length; i++){
		ChartUpdater += "<category label='" + xChartData[i].getElementsByTagName('YEAR')[0].childNodes[0].nodeValue + "' />";				
	}
	
	if(msa != 22){
	//add 5 extra years for Moody's Forecast
		//var d = new Date();
		for(i = 0; i < moodys.length; i++){
			ChartUpdater += "<category label='" + moodys[i].getElementsByTagName('YEAR')[0].childNodes[0].nodeValue + "' />";			
		}
	}
			
	ChartUpdater += "</categories>\ <dataset SeriesName='" + MSANames[msa] + "' renderAs='Line' anchorAlpha='0' Color='6E7740' lineThickness='3'>";
			
	//offset = 0;
	
	for(j = start; j < xChartData.length; j++){
		if(xChartData[j].getElementsByTagName(MSAid[msa]+"_INDEX")[0].childNodes[0].nodeValue == 0){
			ChartUpdater += "<set value='' />";
		}
		else{
			ChartUpdater += "<set value='" + xChartData[j].getElementsByTagName(MSAid[msa]+"_INDEX")[0].childNodes[0].nodeValue + "' toolText='Index'/>";
		}
	}
	
	if(msa != 22){
		ChartUpdater += "</dataset>\ <dataset SeriesName='Forecast*' renderAs='Line' anchorAlpha='0' Color='991429' lineThickness='3'>";
		for(j = start; j < xChartData.length; j++){
			ChartUpdater += "<set value='' />";
		}
		
		var temp = new Array();
		
		ChartUpdater += "<set value='" + xChartData[xChartData.length-1].getElementsByTagName(MSAid[msa]+"_INDEX")[0].childNodes[0].nodeValue + "' toolText='Forecast'/>";
		
		for(j = 0; j < moodys.length; j++){
		
			if(j < 12)
				moodIndex = xChartData[xChartData.length-12+j].getElementsByTagName(MSAid[msa]+"_INDEX")[0].childNodes[0].nodeValue * (1 + (moodys[j].getElementsByTagName(MSAid[msa])[0].childNodes[0].nodeValue / 100));			
			else 
				moodIndex = temp[j-12] * (1 + (moodys[j].getElementsByTagName(MSAid[msa])[0].childNodes[0].nodeValue / 100));			
			
			temp[j] = moodIndex;			
			ChartUpdater += "<set value='" + moodIndex + "' toolText='Forecast'/>";
		}
	}

	ChartUpdater += "</dataset>\ </chart>";
	
	var myChart = new FusionCharts("../apps/gap_gauge/FusionCharts/MSCombi2D.swf", "Chart", "449", "250", "0", "1");	
	myChart.setDataXML(ChartUpdater.valueOf());									
	myChart.render("YoYChart");	
	
	if(msa != 22)
		document.getElementById("toggle").innerHTML="<table id='toggleTable' class='nav' width='448'><tr><td align='left'><span class='footnote'>*Moody's Analytics<br>As of December 2010</span></td><td width='100'></td><th align='right'>Toggle Chart:</th><td><form STYLE='margin: 0px; padding: 0px;'><input type='radio' name='group1' value='Index' onclick='javascript:IndexSelect("+msa+")' checked> Index <input type='radio' name='group1' value='YoY' onclick='YoYSelect("+msa+")' > % Chg </form></td></tr></table><br>";	
	else
		document.getElementById("toggle").innerHTML="<table id='toggleTable' class='nav' width='448'><tr><td align='left'>&nbsp;</td><td width='200'>&nbsp;</td><th align='right'>Toggle Chart:</th><td><form STYLE='margin: 0px; padding: 0px;'><input type='radio' name='group1' value='Index' onclick='javascript:IndexSelect("+msa+")' checked> Index <input type='radio' name='group1' value='YoY' onclick='YoYSelect("+msa+")' > % Chg </form></td></tr></table><br>";
	
	mapCounties(msa);
}

function mapCounties(msa){
	if(msa == 0) //atlanta
		document.getElementById("indexInfo").innerHTML="<br><img src='../images/arrow-red.gif'> <span class='h1'>Click <a href='images/atlanta.jpg' target='_blank'>Here</a> for population density map</span><br><br><table border='0' cellpadding='0' cellspacing='0'><tr><td height='20' width='451' bgcolor='#6E7740' class=body-white><img src='../../images/blank.gif' width='15' height='1'>Atlanta</td>	</tr><tr><td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Barrow, GA</td>	</tr><tr><td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Cherokee, GA</td>	</tr><tr><td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Clayton, GA</td></tr><tr><td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Cobb, GA</td></tr><tr><td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Coweta, GA</td></tr><tr><td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> De Kalb, GA</td></tr><tr><td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Douglas, GA</td></tr><tr><td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Fayette, GA</td></tr><tr><td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Forsyth, GA</td>	</tr>	<tr><td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Fulton, GA</td>	</tr><tr><td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Gwinnett, GA</td>	</tr>	<tr><td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Henry, GA</td>	</tr><tr><td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Newton, GA</td></tr><tr><td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Paulding, GA</td>	</tr>	<tr><td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Rockdale, GA</td></tr><tr><td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Spalding, GA</td>	</tr>	<tr><td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Walton, GA</td>	</tr></table>";
	else if (msa == 1) //boston
		document.getElementById("indexInfo").innerHTML="<br><img src='../images/arrow-red.gif'> <span class='h1'>Click <a href='images/boston.jpg' onClick='popup = window.open(images/boston.jpg, PopupPage,scrollbars=no,resizable=no); return false' target='_blank'>Here</a> for population density map</span><br><br><table border='0' cellpadding='0' cellspacing='0'>		<tr>		<td height='20' width='451' bgcolor='#6E7740' class=body-white><img src='../images/blank.gif' width='15' height='1'>Boston</td>	</tr><tr><td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Essex, MA</td></tr><tr>	<td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Middlesex, MA</td>	</tr>	<tr><td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Norfolk, MA</td>	</tr>		<tr>		<td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Plymouth, MA</td></tr><tr><td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Suffolk, MA</td></tr><tr><td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Rockingham, NH</td>	</tr>	<tr>	<td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Strafford, NH</td></tr>	</table>";
	else if (msa == 2) //charlotte
		document.getElementById("indexInfo").innerHTML="<br><img src='../images/arrow-red.gif'> <span class='h1'>Click <a href='images/charlotte.jpg' onClick='popup = window.open(images/charlotte.jpg, PopupPage,scrollbars=no,resizable=no); return false' target='_blank'>Here</a> for population density map</span><br><br><table border='0' cellpadding='0' cellspacing='0'>	<tr>	<td height='20' width='451' bgcolor='#6E7740' class=body-white><img src='../../images/blank.gif' width='15' height='1'>Charlotte</td></tr>	<tr><td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Cabarrus, NC</td></tr><tr><td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Gaston, NC</td></tr>	<tr>	<td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Mecklenburg, NC</td>	</tr>	<tr>		<td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Union, NC</td>	</tr>	<tr>		<td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> York, SC</td>	</tr></table>";
	else if (msa == 3) //chicago
		document.getElementById("indexInfo").innerHTML="<br><img src='../images/arrow-red.gif'> <span class='h1'>Click <a href='images/chicago.jpg' onClick='window.open(images/chicago.jpg, _blank, scrollbars=no,resizable=no); return false'>Here</a> for population density map</span><br><br><table border='0' cellpadding='0' cellspacing='0'><tr><td height='20' width='451' bgcolor='#6E7740' class=body-white><img src='../../images/blank.gif' width='15' height='1'>Chicago</td></tr><tr><td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Cook, IL</td>	</tr><tr><td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Du Page, IL</td></tr>	<tr>	<td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Kane, IL</td></tr>	<tr>		<td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Kendall, IL</td>	</tr>	<tr>		<td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Lake, IL</td>	</tr>	<tr>		<td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Mchenry, IL</td>	</tr>		<tr>		<td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Will, IL</td>	</tr></table>";
	else if (msa == 4) //cleveland
		document.getElementById("indexInfo").innerHTML="<br><img src='../images/arrow-red.gif'> <span class='h1'>Click <a href='images/cleveland.jpg' onClick='popup = window.open(images/cleveland.jpg, PopupPage,scrollbars=no,resizable=no); return false' target='_blank'>Here</a> for population density map</span><br><br><table border='0' cellpadding='0' cellspacing='0'>		<tr>		<td height='20' width='451' bgcolor='#6E7740' class=body-white><img src='../../images/blank.gif' width='15' height='1'>Cleveland</td>	</tr>			<tr>		<td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Cuyahoga, OH</td>	</tr>		<tr>		<td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Geauga, OH</td>	</tr>	<tr>		<td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Lake, OH</td>	</tr>		<tr>		<td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Lorain, OH</td>	</tr>		<tr>		<td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Medina, OH</td>	</tr></table>";
	else if (msa == 21) //comp-20
		document.getElementById("indexInfo").innerHTML="<br><table border='0' cellpadding='0' cellspacing='0'>	<tr>	<td height='20' width='225' bgcolor='#6E7740' class=body-white><img src='../../images/blank.gif' width='15' height='1'>Composite-20 Market</td>	<td height='20' width='226' bgcolor='#6E7740' class=body-white>Weight</td>	</tr>	<tr>		<td height='20' width='225' bgcolor='#ffffff' class=body><img src='../../images/blank.gif' width='15' height='1'><b>&#155;</b> 	Atlanta:</td>		<td height='20' width='226' bgcolor='#ffffff' class=body>0.03929074</td>	</tr>		<tr>	<td height='20' width='225' bgcolor='#D9DBD0' class=body><img src='../../images/blank.gif' width='15' height='1'><b>&#155;</b> 	Boston:</td>		<td height='20' width='226' bgcolor='#D9DBD0' class=body>0.05279478</td></tr>	<tr>	<td height='20' width='225' bgcolor='#ffffff' class=body><img src='../../images/blank.gif' width='15' height='1'><b>&#155;</b> 	Charlotte:</td>	<td height='20' width='226' bgcolor='#ffffff' class=body>0.01314212</td>	</tr>	<tr>		<td height='20' width='225' bgcolor='#D9DBD0' class=body><img src='../../images/blank.gif' width='15' height='1'><b>&#155;</b> 	Chicago:</td>		<td height='20' width='226' bgcolor='#D9DBD0' class=body>0.06329774</td>	</tr>	<tr>		<td height='20' width='225' bgcolor='#ffffff' class=body><img src='../../images/blank.gif' width='15' height='1'><b>&#155;</b> 	Cleveland:</td>		<td height='20' width='226' bgcolor='#ffffff' class=body>0.01730555</td>	</tr>	<tr>		<td height='20' width='225' bgcolor='#D9DBD0' class=body><img src='../../images/blank.gif' width='15' height='1'><b>&#155;</b> 	Dallas:</td>		<td height='20' width='226' bgcolor='#D9DBD0' class=body>0.03952123</td>	</tr>	<tr>		<td height='20' width='225' bgcolor='#ffffff' class=body><img src='../../images/blank.gif' width='15' height='1'><b>&#155;</b> 	Denver:</td>		<td height='20' width='226' bgcolor='#ffffff' class=body>0.02622900</td>	</tr>		<tr>		<td height='20' width='225' bgcolor='#D9DBD0' class=body><img src='../../images/blank.gif' width='15' height='1'><b>&#155;</b> 	Detroit:</td>		<td height='20' width='226' bgcolor='#D9DBD0' class=body>0.04834563</td>	</tr>	<tr>		<td height='20' width='225' bgcolor='#ffffff' class=body><img src='../../images/blank.gif' width='15' height='1'><b>&#155;</b> 	Las Vegas:</td>		<td height='20' width='226' bgcolor='#ffffff' class=body>0.01054334</td>	</tr>	<tr>		<td height='20' width='225' bgcolor='#D9DBD0' class=body><img src='../../images/blank.gif' width='15' height='1'><b>&#155;</b> 	Los Angeles:</td>		<td height='20' width='226' bgcolor='#D9DBD0' class=body>0.15073029</td>	</tr>		<tr>		<td height='20' width='225' bgcolor='#ffffff' class=body><img src='../../images/blank.gif' width='15' height='1'><b>&#155;</b> 	Miami:</td>		<td height='20' width='226' bgcolor='#ffffff' class=body>0.03551495</td></tr>	<tr>		<td height='20' width='225' bgcolor='#D9DBD0' class=body><img src='../../images/blank.gif' width='15' height='1'><b>&#155;</b> 	Minneapolis:</td>		<td height='20' width='226' bgcolor='#D9DBD0' class=body>0.02794756</td>	</tr>	<tr>		<td height='20' width='225' bgcolor='#ffffff' class=body><img src='../../images/blank.gif' width='15' height='1'><b>&#155;</b> 	New York:</td>		<td height='20' width='226' bgcolor='#ffffff' class=body>0.19401550</td>	</tr>		<tr>		<td height='20' width='225' bgcolor='#D9DBD0' class=body><img src='../../images/blank.gif' width='15' height='1'><b>&#155;</b> 	Phoenix:</td>		<td height='20' width='226' bgcolor='#D9DBD0' class=body>0.02917885</td>	</tr>	<tr>		<td height='20' width='225' bgcolor='#ffffff' class=body><img src='../../images/blank.gif' width='15' height='1'><b>&#155;</b> 	Portland:</td>		<td height='20' width='226' bgcolor='#ffffff' class=body>0.01927497</td>	</tr>	<tr>		<td height='20' width='225' bgcolor='#D9DBD0' class=body><img src='../../images/blank.gif' width='15' height='1'><b>&#155;</b> 	San Diego:</td>		<td height='20' width='226' bgcolor='#D9DBD0' class=body>0.03926998</td>	</tr>		<tr>		<td height='20' width='225' bgcolor='#ffffff' class=body><img src='../../images/blank.gif' width='15' height='1'><b>&#155;</b> 	San Francisco:</td>		<td height='20' width='226' bgcolor='#ffffff' class=body>0.08396154</td>	</tr>		<tr>		<td height='20' width='225' bgcolor='#D9DBD0' class=body><img src='../../images/blank.gif' width='15' height='1'><b>&#155;</b> 	Seattle:</td>		<td height='20' width='226' bgcolor='#D9DBD0' class=body>0.03889872</td>	</tr>	<tr>		<td height='20' width='225' bgcolor='#ffffff' class=body><img src='../../images/blank.gif' width='15' height='1'><b>&#155;</b> 	Tampa:</td>		<td height='20' width='226' bgcolor='#ffffff' class=body>0.01482467</td>	</tr>	<tr>		<td height='20' width='225' bgcolor='#D9DBD0' class=body><img src='../../images/blank.gif' width='15' height='1'><b>&#155;</b> 	Washington, DC:</td>		<td height='20' width='226' bgcolor='#D9DBD0' class=body>0.05591283</td>	</tr>			</table><i>source: Fiserv</i><br><br></td>";	
	else if (msa == 20) //comp-10
		document.getElementById("indexInfo").innerHTML="<br><table border='0' cellpadding='0' cellspacing='0'>	<tr>		<td height='20' width='225' bgcolor='#6E7740' class=body-white><img src='../../images/blank.gif' width='15' height='1'>Composite-10 Market</td>		<td height='20' width='226' bgcolor='#6E7740' class=body-white>Weights</td>	</tr>	<tr>		<td height='20' width='225' bgcolor='#ffffff' class=body><img src='../../images/blank.gif' width='15' height='1'><b>&#155;</b> 	Boston:</td>		<td height='20' width='226' bgcolor='#ffffff' class=body>0.07412188</td>	</tr>		<tr>		<td height='20' width='225' bgcolor='#D9DBD0' class=body><img src='../../images/blank.gif' width='15' height='1'><b>&#155;</b> 	Chicago:</td>		<td height='20' width='226' bgcolor='#D9DBD0' class=body>0.08886762</td>	</tr>	<tr>		<td height='20' width='225' bgcolor='#ffffff' class=body><img src='../../images/blank.gif' width='15' height='1'><b>&#155;</b> 	Denver:</td>		<td height='20' width='226' bgcolor='#ffffff' class=body>0.03682453</td>	</tr>		<tr>		<td height='20' width='225' bgcolor='#D9DBD0' class=body><img src='../../images/blank.gif' width='15' height='1'><b>&#155;</b> 	Las Vegas:</td>		<td height='20' width='226' bgcolor='#D9DBD0' class=body>0.01480245</td>	</tr>	<tr>		<td height='20' width='225' bgcolor='#ffffff' class=body><img src='../../images/blank.gif' width='15' height='1'><b>&#155;</b> 	Los Angeles:</td>		<td height='20' width='226' bgcolor='#ffffff' class=body>0.21161961</td>	</tr>		<tr>		<td height='20' width='225' bgcolor='#D9DBD0' class=body><img src='../../images/blank.gif' width='15' height='1'><b>&#155;</b> 	Miami:</td>		<td height='20' width='226' bgcolor='#D9DBD0' class=body>0.04986164</td>	</tr>	<tr>		<td height='20' width='225' bgcolor='#ffffff' class=body><img src='../../images/blank.gif' width='15' height='1'><b>&#155;</b> 	New York:</td>		<td height='20' width='226' bgcolor='#ffffff' class=body>0.27239040</td>	</tr>		<tr>		<td height='20' width='225' bgcolor='#D9DBD0' class=body><img src='../../images/blank.gif' width='15' height='1'><b>&#155;</b> 	San Diego:</td>		<td height='20' width='226' bgcolor='#D9DBD0' class=body>0.05513356</td>	</tr>		<tr>		<td height='20' width='225' bgcolor='#ffffff' class=body><img src='../../images/blank.gif' width='15' height='1'><b>&#155;</b> 	San Francisco:</td>		<td height='20' width='226' bgcolor='#ffffff' class=body>0.11787881</td>	</tr>		<tr>		<td height='20' width='225' bgcolor='#D9DBD0' class=body><img src='../../images/blank.gif' width='15' height='1'><b>&#155;</b> 	Washington, DC:</td>		<td height='20' width='226' bgcolor='#D9DBD0' class=body>0.07849949</td>	</tr>	</table><i>source: Fiserv</i><br><br></td>";
	else if(msa == 5) //dallas
		document.getElementById("indexInfo").innerHTML="<br><img src='../images/arrow-red.gif'> <span class='h1'>Click <a href='images/dallas.jpg' onClick='popup = window.open(images/dallas.jpg, PopupPage,scrollbars=no,resizable=no); return false' target='_blank'>Here</a> for population density map</span><br><br><table border='0' cellpadding='0' cellspacing='0'>	<tr>	<td height='20' width='451' bgcolor='#6E7740' class=body-white><img src='../../images/blank.gif' width='15' height='1'>Dallas</td></tr>	<tr>	<td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Collins, TX</td></tr>	<tr>	<td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Dallas, TX</td>	</tr>	<tr>		<td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Delta, TX</td>	</tr>		<tr>		<td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Denton, TX</td>	</tr>	<tr>		<td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Ellis, TX</td>	</tr>		<tr>		<td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Hunt, TX</td>	</tr><tr>		<td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Johnson, TX</td></tr><tr><td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Kaufman, TX</td>	</tr>		<tr><td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Parker, TX</td>	</tr><tr>		<td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Rockwall, TX</td>	</tr><tr><td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Tarrant, TX</td>	</tr><tr><td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Wise, TX</td>	</tr></table>";			
	else if(msa == 6) //denver
		document.getElementById("indexInfo").innerHTML="<br><img src='../images/arrow-red.gif'> <span class='h1'>Click <a href='images/denver.jpg' onClick='popup = window.open(images/denver.jpg, PopupPage,scrollbars=no,resizable=no); return false' target='_blank'>Here</a> for population density map</span><br><br>	<table border='0' cellpadding='0' cellspacing='0'><tr><td height='20' width='451' bgcolor='#6E7740' class=body-white><img src='../images/blank.gif' width='15' height='1'>Denver</td></tr><tr><td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Adams, CO</td></tr><tr><td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Arapahoe, CO</td></tr><tr><td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Broomfield, CO</td></tr><tr><td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Denver, CO</td></tr><tr><td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Douglas, CO</td></tr><tr><td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Elbert, CO</td></tr><tr><td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Gilpin, CO</td></tr><tr><td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Jefferson, CO</td></tr></table>";
	else if(msa == 7) //detroit
		document.getElementById("indexInfo").innerHTML="<br>	<img src='../images/arrow-red.gif'> <span class='h1'>Click <a href='images/detroit.jpg' onClick='popup = window.open(images/detroit.jpg, PopupPage,scrollbars=no,resizable=no); return false' target='_blank'>Here</a> for population density map</span><br><br>	<table border='0' cellpadding='0' cellspacing='0'>		<tr>		<td height='20' width='451' bgcolor='#6E7740' class=body-white><img src='../../images/blank.gif' width='15' height='1'>Detroit</td>	</tr>			<tr>		<td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Lapeer, MI</td>	</tr>		<tr>		<td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Livingston, MI</td>	</tr>	<tr>		<td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Macomb, MI</td>	</tr>		<tr>		<td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Oakland, MI</td>	</tr>		<tr>		<td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Saint Clair, MI</td>	</tr>		<tr>		<td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Wayne, MI</td>	</tr>	</table>";
	else if(msa == 8) //las vegas
		document.getElementById("indexInfo").innerHTML="<br><img src='../images/arrow-red.gif'> <span class='h1'>Click <a href='images/las-vegas.jpg' onClick='popup = window.open(images/las-vegas.jpg, PopupPage,scrollbars=no,resizable=no); return false' target='_blank'>Here</a> for population density map</span><br><br>	<table border='0' cellpadding='0' cellspacing='0'>		<tr>		<td height='20' width='451' bgcolor='#6E7740' class=body-white><img src='../../images/blank.gif' width='15' height='1'>Las Vegas</td>	</tr><tr><td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Clark, NV</td>	</tr>	</table>";
	else if(msa == 9) //los angeles
		document.getElementById("indexInfo").innerHTML="<br><img src='../images/arrow-red.gif'> <span class='h1'>Click <a href='images/los-angeles.jpg' onClick='popup = window.open(images/los-angeles.jpg, PopupPage,scrollbars=no,resizable=no); return false' target='_blank'>Here</a> for population density map</span><br><br><table border='0' cellpadding='0' cellspacing='0'>	<tr>		<td height='20' width='451' bgcolor='#6E7740' class=body-white><img src='../../images/blank.gif' width='15' height='1'>Los Angeles</td>	</tr>			<tr>		<td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Los Angeles, CA</td>	</tr>		<tr>		<td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Orange, CA</td>	</tr>	</table>";
	else if(msa == 10) //miami
		document.getElementById("indexInfo").innerHTML="<br><img src='../images/arrow-red.gif'> <span class='h1'>Click <a href='images/miami.jpg' onClick='popup = window.open(images/miami.jpg, PopupPage,scrollbars=no,resizable=no); return false' target='_blank'>Here</a> for population density map</span><br><br><table border='0' cellpadding='0' cellspacing='0'><tr><td height='20' width='451' bgcolor='#6E7740' class=body-white><img src='../../images/blank.gif' width='15' height='1'>Miami</td>	</tr>		<tr>		<td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Broward, FL</td>	</tr>	<tr>		<td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Miami-Dade, FL</td>	</tr>	<tr>		<td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Palm Beach, FL</td>	</tr>	</table>";
	else if(msa == 11) //minn
		document.getElementById("indexInfo").innerHTML="<br><img src='../images/arrow-red.gif'> <span class='h1'>Click <a href='images/minneapolis.jpg' onClick='popup = window.open(images/minneapolis.jpg, PopupPage,scrollbars=no,resizable=no); return false' target='_blank'>Here</a> for population density map</span><br><br><table border='0' cellpadding='0' cellspacing='0'>		<tr>		<td height='20' width='451' bgcolor='#6E7740' class=body-white><img src='../../images/blank.gif' width='15' height='1'>Minneapolis</td>	</tr>	<tr>		<td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Anoka, MN</td>	</tr>		<tr>		<td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Carver, MN</td>	</tr>	<tr>		<td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Chisago, MN</td>	</tr>		<tr>		<td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Dakota, MN</td>	</tr>		<tr>		<td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Hennepin, MN</td>	</tr>	<tr><td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Isanti, MN</td></tr>	<tr><td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Ramsey, MN</td>	</tr>	<tr>	<td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Scott, MN</td>	</tr>	<tr>		<td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Sherburne, MN</td>	</tr>	<tr><td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Washington, MN</td>	</tr>	<tr>	<td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Wright, MN</td></tr></table>";
	else if(msa == 12) //new york
		document.getElementById("indexInfo").innerHTML="<br>	<img src='../images/arrow-red.gif'> <span class='h1'>Click <a href='images/new-york.jpg' target='_blank'>Here</a> for population density map</span><br><br><table border='0' cellpadding='0' cellspacing='0'>		<tr>		<td height='20' width='451' bgcolor='#6E7740' class=body-white><img src='../images/blank.gif' width='15' height='1'>New York</td>	</tr><tr>	<td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Fairfield, CT</td></tr>	<tr>	<td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> New Haven, CT</td>	</tr>	<tr>	<td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Bergen, NJ</td>	</tr>	<tr>	<td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Essex, NJ</td>	</tr>	<tr>	<td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Hudson, NJ</td>	</tr>	<tr>		<td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Hunterdon, NJ</td>	</tr>		<tr>		<td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Mercer, NJ</td>	</tr>	<tr>	<td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Middlesex, NJ</td>	</tr>	<tr>	<td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Monmouth, NJ</td>	</tr>	<tr>	<td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Morris, NJ</td>	</tr>	<tr>	<td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Ocean, NJ</td>	</tr>	<tr>	<td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Passaic, NJ</td>	</tr>	<tr>	<td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Somerset, NJ</td>	</tr>	<tr>	<td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Sussex, NJ</td>	</tr>	<tr>	<td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Union, NJ</td>	</tr>	<tr>		<td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Warren, NJ</td>	</tr>	<tr>	<td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Bronx, NY</td>	</tr>		<tr>		<td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Dutchess, NY</td>	</tr>	<tr>	<td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Kings, NY</td>	</tr>	<tr>	<td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Nassau, NY</td>	</tr>		<tr>	<td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> New York, NY</td>	</tr>		<tr>		<td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Orange, NY</td>	</tr>	<tr>	<td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Putnam, NY</td>	</tr>	<tr>	<td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Queens, NY</td>	</tr>	<tr>		<td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Richmond, NY</td>	</tr>	<tr>	<td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Rockland, NY</td>	</tr>	<tr>	<td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Suffolk, NY</td>	</tr>	<tr>	<td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Westchester, NY</td>	</tr>	</table>";
	else if(msa == 13) //phoenix
		document.getElementById("indexInfo").innerHTML="<br><img src='../images/arrow-red.gif'> <span class='h1'>Click <a href='images/phoenix.jpg' onClick='popup = window.open(images/phoenix.jpg, PopupPage,scrollbars=no,resizable=no); return false' target='_blank'>Here</a> for population density map</span><br><br><table border='0' cellpadding='0' cellspacing='0'>	<tr>	<td height='20' width='451' bgcolor='#6E7740' class=body-white><img src='../../images/blank.gif' width='15' height='1'>Phoenix</td>	</tr><tr>	<td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Maricopa, AZ</td>	</tr>	<tr>	<td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Pinal, AZ</td>	</tr></table>";
	else if(msa == 14) //portland
		document.getElementById("indexInfo").innerHTML="<br><img src='../images/arrow-red.gif'> <span class='h1'>Click <a href='images/portland.jpg' onClick='popup = window.open(images/portland.jpg, PopupPage,scrollbars=no,resizable=no); return false' target='_blank'>Here</a> for population density map</span><br><br><table border='0' cellpadding='0' cellspacing='0'>	<tr>	<td height='20' width='451' bgcolor='#6E7740' class=body-white><img src='../../images/blank.gif' width='15' height='1'>Portland</td></tr><tr>	<td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Clackamas, OR</td>	</tr>	<tr>	<td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Columbia, OR</td>	</tr>	<tr><td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Multnomah, OR</td>	</tr><tr><td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Washington, OR</td>	</tr><tr><td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Yamhill, OR</td>	</tr><tr><td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Clark, WA</td>	</tr><tr><td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Skamania, WA</td>	</tr></table>";
	else if(msa == 15) //san diego
		document.getElementById("indexInfo").innerHTML="<br><img src='../images/arrow-red.gif'> <span class='h1'>Click <a href='images/san-diego.jpg' onClick='popup = window.open(images/san-diego.jpg, PopupPage,scrollbars=no,resizable=no); return false' target='_blank'>Here</a> for population density map</span><br><br><table border='0' cellpadding='0' cellspacing='0'>	<tr>	<td height='20' width='451' bgcolor='#6E7740' class=body-white><img src='../../images/blank.gif' width='15' height='1'>San Diego</td></tr>	<tr><td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> San Diego, CA</td>	</tr>	</table>";
	else if(msa == 16) //san francisco
		document.getElementById("indexInfo").innerHTML="<br><img src='../images/arrow-red.gif'> <span class='h1'>Click <a href='images/san-francisco.jpg' onClick='popup = window.open(images/san-francisco.jpg, PopupPage,scrollbars=no,resizable=no); return false' target='_blank'>Here</a> for population density map</span><br><br><table border='0' cellpadding='0' cellspacing='0'>	<tr><td height='20' width='451' bgcolor='#6E7740' class=body-white><img src='../../images/blank.gif' width='15' height='1'>San Francisco</td></tr>	<tr><td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Alameda, CA</td></tr><tr><td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Contra Costa, CA</td></tr><tr><td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Marin, CA</td></tr><tr>	<td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> San Francisco, CA</td>	</tr>	<tr>		<td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> San Mateo, CA</td>	</tr>	</table>";
	else if(msa == 17) //seattle
		document.getElementById("indexInfo").innerHTML="<br><img src='../images/arrow-red.gif'> <span class='h1'>Click <a href='images/seattle.jpg' onClick='popup = window.open(images/seattle.jpg, PopupPage,scrollbars=no,resizable=no); return false' target='_blank'>Here</a> for population density map</span><br><br><table border='0' cellpadding='0' cellspacing='0'><tr><td height='20' width='451' bgcolor='#6E7740' class=body-white><img src='../../images/blank.gif' width='15' height='1'>Seattle</td></tr><tr><td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> King, WA</td></tr><tr><td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Pierce, WA</td>	</tr>	<tr><td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Snohomish, WA</td>	</tr></table>";
	else if(msa == 18) //tampa
		document.getElementById("indexInfo").innerHTML="<br><img src='../images/arrow-red.gif'> <span class='h1'>Click <a href='images/tampa.jpg' onClick='popup = window.open(images/tampa.jpg, PopupPage,scrollbars=no,resizable=no); return false' target='_blank'>Here</a> for population density map</span><br><br><table border='0' cellpadding='0' cellspacing='0'><tr><td height='20' width='451' bgcolor='#6E7740' class=body-white><img src='../../images/blank.gif' width='15' height='1'>Tampa</td></tr><tr><td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Hernando, FL</td></tr>	<tr>	<td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Hillsborough, FL</td></tr>	<tr>	<td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Pasco, FL</td>	</tr>	<tr><td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Pinellas, FL</td>	</tr></table>";
	else if(msa == 19) //washington dc
		document.getElementById("indexInfo").innerHTML="<br><img src='../images/arrow-red.gif'> <span class='h1'>Click <a href='images/washington-dc.jpg' onClick='popup = window.open(images/washington-dc.jpg, PopupPage,scrollbars=no,resizable=no); return false' target='_blank'>Here</a> for population density map</span><br><br><table border='0' cellpadding='0' cellspacing='0'>	<tr>	<td height='20' width='451' bgcolor='#6E7740' class=body-white><img src='../../images/blank.gif' width='15' height='1'>Washington D.C.</td></tr><tr><td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> District of Columbia, DC</td></tr>	<tr>	<td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Calvert, MD</td>	</tr>	<tr>	<td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Charles, MD</td>	</tr>	<tr>	<td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Frederick, MD</td>	</tr>	<tr><td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Montgomery, MD</td>	</tr>	<tr>	<td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Prince Georges, MD</td>	</tr>		<tr>	<td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Alexandria City, VA</td>	</tr>	<tr>		<td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Arlington, VA</td>	</tr>		<tr>		<td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Clark, VA</td>	</tr>	<tr>		<td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Fairfax, VA</td>	</tr>		<tr>		<td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Fauquier, VA</td>	</tr>	<tr><td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Fredericksburg City, VA</td></tr><tr>	<td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> King George, VA</td>	</tr><tr><td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Loudoun, VA</td></tr><tr><td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Prince William, VA</td></tr><tr><td height='20' width='451' bgcolor='#D9DBD0' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Spotsylvania, VA</td>	</tr>	<tr><td height='20' width='451' bgcolor='#ffffff' class=body><img src='../images/blank.gif' width='15' height='1'><b>&#155;</b> Stafford, VA</td></tr></table>";
	else if(msa == 22) //us national
		document.getElementById("indexInfo").innerHTML="<br>Normalized <span class='bodyGreen'><b>U.S. National</span></b> Weights (Jan. 2000 on)<br><table border='0' cellpadding='0' cellspacing='0'>	<tr>	<td height='20' width='225' bgcolor='#6E7740' class=body-white><img src='../../images/blank.gif' width='15' height='1'>Census Division</td>	<td height='20' width='226' bgcolor='#6E7740' class=body-white>Weight</td>	</tr>	<tr>	<td height='20' width='225' bgcolor='#ffffff' class=body><img src='../../images/blank.gif' width='15' height='1'><b>&#155;</b> 	East North Central:</td><td height='20' width='226' bgcolor='#ffffff' class=body>0.15770404</td></tr>	<tr>	<td height='20' width='225' bgcolor='#D9DBD0' class=body><img src='../../images/blank.gif' width='15' height='1'><b>&#155;</b> 	East South Central:</td>	<td height='20' width='226' bgcolor='#D9DBD0' class=body>0.04632221</td>	</tr>	<tr>	<td height='20' width='225' bgcolor='#ffffff' class=body><img src='../../images/blank.gif' width='15' height='1'><b>&#155;</b> 	Middle Atlantic:</td>	<td height='20' width='226' bgcolor='#ffffff' class=body>0.13653163</td>	</tr>	<tr>		<td height='20' width='225' bgcolor='#D9DBD0' class=body><img src='../../images/blank.gif' width='15' height='1'><b>&#155;</b> 	Mountain:</td>	<td height='20' width='226' bgcolor='#D9DBD0' class=body>0.06804488</td></tr><tr><td height='20' width='225' bgcolor='#ffffff' class=body><img src='../../images/blank.gif' width='15' height='1'><b>&#155;</b> 	New England:</td>	<td height='20' width='226' bgcolor='#ffffff' class=body>0.06391155</td>	</tr>	<tr>		<td height='20' width='225' bgcolor='#D9DBD0' class=body><img src='../../images/blank.gif' width='15' height='1'><b>&#155;</b> 	Pacific:</td>		<td height='20' width='226' bgcolor='#D9DBD0' class=body>0.22095966</td>	</tr>	<tr>		<td height='20' width='225' bgcolor='#ffffff' class=body><img src='../../images/blank.gif' width='15' height='1'><b>&#155;</b> 	South Atlantic:</td>		<td height='20' width='226' bgcolor='#ffffff' class=body>0.17460979</td>	</tr>		<tr>		<td height='20' width='225' bgcolor='#D9DBD0' class=body><img src='../../images/blank.gif' width='15' height='1'><b>&#155;</b> 	West North Central:</td>	<td height='20' width='226' bgcolor='#D9DBD0' class=body>0.05969073</td>	</tr>	<tr>	<td height='20' width='225' bgcolor='#ffffff' class=body><img src='../../images/blank.gif' width='15' height='1'><b>&#155;</b> 	West South Central:</td>		<td height='20' width='226' bgcolor='#ffffff' class=body>0.07232552</td>	</tr>	</table><i>source: Fiserv</i>";		
}

