function showHighlight(c) {
	imgArray = {
		"americas" : "/site/global/images/continent_americas.jpg",
		"uk" : "/site/global/images/continent_uk.jpg",
		"europe" : "/site/global/images/continent_europe.jpg",
		"middleeast" : "/site/global/images/continent_middleeast.jpg",
		"africa" : "/site/global/images/continent_none.jpg",
		"asiapac" : "/site/global/images/continent_asiapac.jpg",
		"none" : "/site/global/images/continent_none.jpg"
	}
	document.getElementById('contmap').src = imgArray[c];
}
	
function listIntranet(i) {
	intraArray = {
		"americas" : "<h6>&nbsp;Americas</h6><ul><li><a href='http://access.prd.invesco.com'>Access North America</a></li>"
			+ "<li><a href='http://www.myatlantictrust.com/portal/server.pt/'>MyAtlanticTrust</a></li>"
			+ "<li><a href='http://inaatlas.prd.invesco.com/'>Institutional</a></li>"
			+ "<li><a href=\"javascript:listIntranet('none');showHighlight('none');\" style=\"padding-left: 110px;font-size:9px;\">&lt;&lt;&nbsp;Region List</a></li></ul>",
		"uk" : "<h6>&nbsp;UK & Ireland</h6><ul><li><a href='http://connect.prd.invesco.com/uk/'>UK Regional Site</a></li>"
			+ "<li><a href='http://connect.prd.invesco.com/dublin/'>Dublin Regional Site</a></li>"
			+ "<li><a href='http://connect.prd.invesco.com/client_services/'>Client Services</a></li>"
			+ "<li><a href='http://connect.prd.invesco.com/investment/'>Investments</a></li>"
			+ "<li><a href='http://connect.prd.invesco.com/distribution/Portal/UK%20Retail%20Sales/'>Retail Sales</a></li>"
			+ "<li><a href='http://connect.prd.invesco.com/technology/'>Technology</a></li>"
			+ "<li><a href=\"javascript:listIntranet('none');showHighlight('none');\" style=\"padding-left: 110px;font-size:9px;\">&lt;&lt;&nbsp;Region List</a></li></ul>",
		"europe" : "<h6>&nbsp;Continental Europe</h6><ul><li><a href='http://connect.prd.invesco.com/ce/'>CE Regional Site</a></li>"
			+ "<li><a href=\"javascript:listIntranet('none');showHighlight('none');\" style=\"padding-left: 110px;font-size:9px;\">&lt;&lt;&nbsp;Region List</a></li></ul>",
		"middleeast" : "<h6>&nbsp;Middle East</h6><ul><li><a href='http://intranet.prd.invesco.com/'>Invesco Intranet</a></li><li><a href=\"javascript:listIntranet('none');showHighlight('none');\" style=\"padding-left: 110px;font-size:9px;\">&lt;&lt;&nbsp;Region List</a></li></ul>",
		"africa" : "<h6>&nbsp;Africa</h6><ul><li><a href='http://intranet.prd.invesco.com/'>Invesco Intranet</a></li><li><a href=\"javascript:listIntranet('none');showHighlight('none');\" style=\"padding-left: 110px;font-size:9px;\">&lt;&lt;&nbsp;Region List</a></li></ul>",
		"asiapac" : "<h6>&nbsp;Asia-Pacific</h6><ul><li><a href='http://connect.ap.prd.invesco.com/asia-pacific/'>Asia Pacific Regional Site</a></li>"
			+ "<li><a href='http://connect.ap.prd.invesco.com/australia/'>Australia Regional Site</a></li>"
			+ "<li><a href='http://connect.ap.prd.invesco.com/asia-pacific/Portal/Japan/'>Japan Regional Site</a></li>"
			+ "<li><a href=\"javascript:listIntranet('none');showHighlight('none');\" style=\"padding-left: 110px;font-size:9px;\">&lt;&lt;&nbsp;Region List</a></li></ul>",
		"none" : "<h6>Choose your Region</h6><ul><li><a href=\"javascript:listIntranet('americas');\" onMouseOver=\"javascript:showHighlight('americas');\">Americas</a></li><li><a href=\"javascript:listIntranet('asiapac')\" onMouseOver=\"javascript:showHighlight('asiapac');\">Asia-Pacific</a></li><li><a href=\"javascript:listIntranet('europe')\" onMouseOver=\"javascript:showHighlight('europe');\">Continental Europe</a></li><li><a href=\"javascript:listIntranet('middleeast')\" onMouseOver=\"javascript:showHighlight('middleeast');\">Middle East</a></li><li><a href=\"javascript:listIntranet('uk')\" onMouseOver=\"javascript:showHighlight('uk');\">UK & Ireland</a></li><li>&nbsp;</li></ul>"
	}
	document.getElementById('intralist').innerHTML = intraArray[i];
}
	
function qsCheck() {
	var qStr = location.search;
	var myRegion = qStr.split("=");
	if (location.search && myRegion[1] != "") {
		
		if (myRegion[1].indexOf("_") < 0) {
			loadList(myRegion[1]);
			if (myRegion[1]=="middleeast") { loadDetails('middleeast_dubai'); }
			if (myRegion[1]=="americas") { setRegionTitle('americas');loadList('americas');loadDetails('amer'); }	
			if (myRegion[1]=="uk") { setRegionTitle('uk');loadList('uk');loadDetails('uk'); }	
			if (myRegion[1]=="europe") { setRegionTitle('europe');loadList('europe');loadDetails('europe'); }	
			if (myRegion[1]=="middleeast") { setRegionTitle('middleeast');loadList('middleeast');loadDetails('middleeast'); }
			if (myRegion[1]=="africa") { setRegionTitle('africa');loadList('africa');loadDetails('africa'); }	
			if (myRegion[1]=="asiapac") { setRegionTitle('asiapac');loadList('asiapac');loadDetails('asiapac'); }	
		}// else {
		//	myLocation = myRegion[1];

		//}	
	}
}

function setRegionTitle(r) {
	if (r=="americas") { document.getElementById('region_title').innerHTML = "<h2>Americas</h2>"; }	
	if (r=="uk") { document.getElementById('region_title').innerHTML = "<h2>UK &amp; Ireland</h2>"; }	
	if (r=="europe") { document.getElementById('region_title').innerHTML = "<h2>Continental Europe</h2>"; }	
	if (r=="middleeast") { document.getElementById('region_title').innerHTML = "<h2>Middle East</h2>"; }
	if (r=="africa") { document.getElementById('region_title').innerHTML = "<h2>Africas</h2>"; }	
	if (r=="asiapac") { document.getElementById('region_title').innerHTML = "<h2>Asia-Pacific</h2>"; }
	if (r=="showall") { document.getElementById('region_title').innerHTML = "<h2>All Locations</h2>"; }
}

function clearDetails() {
	document.getElementById('locdet').innerHTML = "&nbsp;";
}



function whichSquares() {

var qStr = location.search;
	var myRegion = qStr.split("=");
	//alert(myRegion[1]);
	if (location.search && myRegion[1] != "") {

		if (myRegion[1]=="americas") { setRegionTitle("americas");loadSquares("americas"); }	
		if (myRegion[1]=="uk") { setRegionTitle("uk");loadSquares("uk"); }	
		if (myRegion[1]=="europe") { setRegionTitle("europe");loadSquares("europe"); }	
		if (myRegion[1]=="middleeast") { setRegionTitle("middleeast");loadSquares("middleeast"); }
		if (myRegion[1]=="africa") { setRegionTitle("africa");loadSquares("africa"); }	
		if (myRegion[1]=="asiapac") { setRegionTitle("asiapac");loadSquares("asiapac"); }
	} else {
		setRegionTitle("showall");
		loadSquares("showall");
	}
	

}

function loadSquares(x) {

		squaresArray = {
			"americas" : "<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr>" + 
					"<td align=\"left\" width=\"10%\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=amer_atlanta\" set=\"yes\"><img border=\"0\" width=\"90\" alt=\"Atlanta, GA\" src=\"/site/global/images/offices/Atlanta_ImgMain_thumb.jpg\" style=\"margin: 5px;\"/></a></div></td>" + 
					"<td align=\"left\" width=\"15%\"><a href=\"/portal/site/global/Offices?city=amer_atlanta\">Atlanta, GA</a></td>" + 
					"<td width=\"5%\"> </td>" + 
					"<td align=\"left\" width=\"10%\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=amer_austin\" set=\"yes\"><img border=\"0\" width=\"90\" alt=\"Austin, TX\" src=\"/site/global/images/offices/Austin_ImgMain_thumb.jpg\" style=\"margin: 5px;\"/></a></div></td>" + 
					"<td align=\"left\" width=\"15%\"><a href=\"/portal/site/global/Offices?city=amer_austin\">Austin, TX</a></td>" + 
					"<td width=\"5%\"> </td>" + 
					"<td align=\"right\" width=\"10%\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=amer_baltimore\" set=\"yes\"><img border=\"0\" width=\"90\" alt=\"Baltimore, MD\" src=\"/site/global/images/offices/Baltimore_ImgMain_thumb.jpg\" style=\"margin: 5px;\"/></a></div></td>" + 
					"<td align=\"left\" width=\"15%\"><p><a href=\"/portal/site/global/Offices?city=amer_baltimore\">Baltimore, MD</a></p></td>" + 
				"</tr>" +
				"<tr>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=amer_boston\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Boston, MA\" src=\"/site/global/images/offices/Boston_Invesco_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=amer_boston\">Boston, MA</a></p></td>" + 
					"<td width=\"5%\"> </td>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=amer_calgary\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Calgary, Alberta\" src=\"/site/global/images/offices/Calgary_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=amer_calgary\">Calgary, Alberta</a></p></td>" + 
					"<td width=\"5%\"> </td>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=amer_charlottetown\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Charlottetown, PEI\" src=\"/site/global/images/offices/Charlottetown_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=amer_charlottetown\">Charlottetown, PEI</a></p></td>" + 
				"</tr>" +
				"<tr>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=amer_chicago\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Chicago, IL\" src=\"/site/global/images/offices/Chicago_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=amer_chicago\">Chicago, IL</a></p></td>" + 
					"<td width=\"5%\"> </td>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=amer_dallas\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Dallas, TX\" src=\"/site/global/images/offices/Dallas_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=amer_dallas\">Dallas, TX</a></p></td>" + 
					"<td width=\"5%\"> </td>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=amer_denver\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Denver, CO\" src=\"/site/global/images/offices/Denver_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=amer_denver\">Denver, CO</a></p></td>" + 
				"</tr>" +
				"<tr>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=amer_houston\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Houston, TX\" src=\"/site/global/images/offices/Houston_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=amer_houston\">Houston, TX</a></p></td>" + 
					"<td width=\"5%\"> </td>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=amer_louisville\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Louisville, KY\" src=\"/site/global/images/offices/Louisville_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=amer_louisville\">Louisville, KY</a></p></td>" + 
					"<td width=\"5%\"> </td>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=amer_montreal\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Montreal, Quebec\" src=\"/site/global/images/offices/Montreal_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=amer_montreal\">Montreal, Quebec</a></p></td>" + 
				"</tr>" +
				"<tr>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=amer_newport\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Newport Beach, CA\" src=\"/site/global/images/offices/invesco_logo.gif\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=amer_newport\">Newport Beach, CA</a></p></td>" + 
					"<td width=\"5%\"> </td>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=amer_newyork\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"New York, NY\" src=\"/site/global/images/offices/NYAtlantic_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=amer_newyork\">New York, NY</a></p></td>" + 
					"<td width=\"5%\"> </td>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=amer_portland\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Portland, OR\" src=\"/site/global/images/offices/invesco_logo.gif\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=amer_portland\">Portland, OR</a></p></td>" + 
				"</tr>" +
				"<tr>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=amer_sanfrancisco\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"San Francisco, CA\" src=\"/site/global/images/offices/invesco_logo.gif\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=amer_sanfrancisco\">San Francisco, CA</a></p></td>" + 
					"<td width=\"5%\"> </td>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=amer_sanjuan\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"San Juan, PR\" src=\"/site/global/images/offices/invesco_logo.gif\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=amer_sanjuan\">San Juan, PR</a></p></td>" + 
					"<td width=\"5%\"> </td>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=amer_toronto\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Toronto, Ontario\" src=\"/site/global/images/offices/TorontoYonge_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=amer_toronto\">Toronto, Ontario</a></p></td>" + 
				"</tr>" +
				"<tr>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=amer_vancouver\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Vancouver, BC\" src=\"/site/global/images/offices/Vancouver_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=amer_vancouver\">Vancouver, BC</a></p></td>" +
					"<td width=\"5%\"> </td>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=amer_washington\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Washington, DC\" src=\"/site/global/images/offices/invesco_logo.gif\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=amer_washington\">Washington, DC</a></p></td>" + 
					"<td width=\"5%\"> </td>" + 
					"" + 
				"</tr>" +
				"<tr>" + 
					"" + 
					"<td width=\"5%\"> </td>" + 
					"" + 
					"<td align=\"left\"></td>" + 
					"" + 
				"</tr></table>", 
			"asiapac" : "<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr>" +
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=asiapac_beijing\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Beijing, China\" src=\"/site/global/images/offices/Beijing_ImgMain_thumb_1.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=asiapac_beijing\">Beijing, China</a></p></td>" + 
					"<td width=\"5%\"> </td>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=asiapac_hongkong\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Hong Kong\" src=\"/site/global/images/offices/HongKong_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=asiapac_hongkong\">Hong Kong</a></p></td>" + 
					"<td width=\"5%\"> </td>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=asiapac_hyderabad\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Hyderabad, India\" src=\"/site/global/images/offices/Hyderabad_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=asiapac_hyderabad\">Hyderabad, India</a></p></td>" + 
				"</tr>" + 
				"<tr>" +
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=asiapac_melbourne\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Melbourne, Australia\" src=\"/site/global/images/offices/Melbourne_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=asiapac_melbourne\">Melbourne, Australia</a></p></td>" +
					"<td width=\"5%\"> </td>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=asiapac_mumbai\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Mumbai, India\" src=\"/site/global/images/offices/invesco_logo.gif\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=asiapac_mumbai\">Mumbai, India</a></p></td>" + 
					"<td width=\"5%\"> </td>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=asiapac_seoul\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Seoul, Korea\" src=\"/site/global/images/offices/Seoul_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=asiapac_seoul\">Seoul, Korea</a></p></td>" + 
				"</tr>" + 
				"<tr>" +
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=asiapac_shanghai\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Shangai, China\" src=\"/site/global/images/offices/Shanghai_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=asiapac_shanghai\">Shanghai, China</a></p></td>" + 
					"<td width=\"5%\"> </td>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=asiapac_shenzhencity\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Shenzhen, China\" src=\"/site/global/images/offices/Shenzhen_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=asiapac_shenzhencity\">Shenzhen, China</a></p></td>" + 
					"<td width=\"5%\"> </td>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=asiapac_singapore\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Singapore\" src=\"/site/global/images/offices/Singapore_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=asiapac_singapore\">Singapore</a></p></td>" + 
				"</tr>" + 
				"<tr>" +
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=asiapac_sydney\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Sydney, Australia\" src=\"/site/global/images/offices/invesco_logo.gif\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=asiapac_sydney\">Sydney, Australia</a></p></td>" + 
					"<td width=\"5%\"> </td>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=asiapac_taipei\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Taipei, Taiwan\" src=\"/site/global/images/offices/Taipei_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=asiapac_taipei\">Taipei, Taiwan</a></p></td>" + 
					"<td width=\"5%\"> </td>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=asiapac_tokyo\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Tokyo, Japan\" src=\"/site/global/images/offices/Tokyo_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=asiapac_tokyo\">Tokyo, Japan</a></p></td>" + 
				"</tr></table>", 
			"europe" : "<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr>" +
					"<td align=\"left\" width=\"10%\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=europe_amsterdam\" set=\"yes\"><img border=\"0\" width=\"90\" alt=\"Amsterdam, The Netherlands\" src=\"/site/global/images/offices/invesco_logo.gif\" style=\"margin: 5px;\"/></a></div></td>" +
					"<td align=\"left\" width=\"15%\"><a href=\"/portal/site/global/Offices?city=europe_amsterdam\">Amsterdam, The Netherlands</a></td>" +
					"<td width=\"5%\"> </td>" +
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=europe_brussels\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Brussels, Belgium\" src=\"/site/global/images/offices/Brussels_ImgMain_thumb.jpg\"/></a></div></td>" +
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=europe_brussels\">Brussels, Belgium</a></p></td>" +
					"<td width=\"5%\"> </td>" +
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=europe_frankfurt\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Frankfurt, Germany\" src=\"/site/global/images/offices/Frankfurt_ImgMain_thumb.jpg\"/></a></div></td>" +
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=europe_frankfurt\">Frankfurt, Germany</a></p></td>" +
				"</tr>" +
				"<tr>" +
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=europe_luxembourg\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Luxembourg\" src=\"/site/global/images/offices/invesco_logo.gif\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=europe_luxembourg\">Luxembourg</a></p></td>" + 
					"<td width=\"5%\"> </td>" +
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=europe_madrid\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Madrid, Spain\" src=\"/site/global/images/offices/Madrid_ImgMain_thumb.jpg\"/></a></div></td>" +
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=europe_madrid\">Madrid, Spain</a></p></td>" +
					"<td width=\"5%\"> </td>" +
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=europe_milan\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Milan, Italy\" src=\"/site/global/images/offices/invesco_logo.gif\"/></a></div></td>" +
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=europe_milan\">Milan, Italy</a></p></td>" +
				"</tr>" +
				"<tr>" +
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=europe_munich\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Munich, Germany\" src=\"/site/global/images/offices/Munich_ImgMain_thumb.jpg\"/></a></div></td>" +
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=europe_munich\">Munich, Germany</a></p></td>" +
					"<td width=\"5%\"> </td>" +
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=europe_paris\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Paris, France\" src=\"/site/global/images/offices/Paris_ImgMain_thumb.jpg\"/></a></div></td>" +
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=europe_paris\">Paris, France</a></p></td>" +
					"<td width=\"5%\"> </td>" +
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=europe_prague\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Prague, CZ\" src=\"/site/global/images/offices/Prague_ImgMain_thumb.jpg\"/></a></div></td>" +
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=europe_prague\">Prague, CZ</a></p></td>" +
				"</tr>" +
				"<tr>" +
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=europe_vienna\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Vienna, Austria\" src=\"/site/global/images/offices/Vienna_ImgMain_thumb.jpg\"/></a></div></td>" +
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=europe_vienna\">Vienna, Austria</a></p></td>" +
					"<td width=\"5%\"> </td>" +
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=europe_zurich\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Zurich, Switzerland\" src=\"/site/global/images/offices/Zurich_ImgMain_thumb.jpg\"/></a></div></td>" +
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=europe_zurich\">Zurich, Switzerland</a></p></td>" +
					"<td width=\"5%\"> </td>" + 
					"<td align=\"right\"> </td>" +
					"<td align=\"left\"> </td>" +
				"</tr></table>", 
			"middleeast" : "<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=middleeast_dubai\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Dubai, UAE\" src=\"/site/global/images/offices/Dubai_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=middleeast_dubai\">Dubai, UAE</a></p></td>" + 
					"<td width=\"5%\"> </td>" + 
					"<td align=\"right\">&nbsp;</td>" + 
					"<td align=\"left\">&nbsp;</td>" + 
					"<td width=\"5%\"> </td>" + 
					"<td align=\"right\">&nbsp;</td>" + 
					"<td align=\"left\">&nbsp;</td>" + 
				"</tr></table>", 
			"uk" : "<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr>" +
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=uk_bracknell\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Bracknell, UK\" src=\"/site/global/images/offices/invesco_logo.gif\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=uk_bracknell\">Bracknell, UK</a></p></td>" + 
					"<td width=\"5%\"> </td>" +
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=uk_dublin\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Dublin, Ireland\" src=\"/site/global/images/offices/Dublin_ImgMain_thumb.jpg\"/></a></div></td>" +
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=uk_dublin\">Dublin, Ireland</a></p></td>" +
					"<td width=\"5%\"> </td>" +
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=uk_henley\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Henley, UK\" src=\"/site/global/images/offices/Henley_ImgMain_thumb.jpg\"/></a></div></td>" +
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=uk_henley\">Henley, UK</a></p></td>" +
				"</tr>" +
				"<tr>" +
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=uk_jersey\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Jersey (St. Helier), UK\" src=\"/site/global/images/offices/Jersey_ImgMain_thumb.jpg\"/></a></div></td>" +
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=uk_jersey\">Jersey (St. Helier), UK</a></p></td>" +
					"<td width=\"5%\"> </td>" +
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=uk_london\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"London, Finsbury Square, UK\" src=\"/site/global/images/offices/LondonPerpetual_ImgMain_thumb.jpg\"/></a></div></td>" +
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=uk_london\">London, Finsbury Square, UK</a></p></td>" +
					"<td width=\"5%\"> </td>" +
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=uk_portmansquare\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"London, Portman Square, UK\" src=\"/site/global/images/offices/LondonInvesco_ImgMain_thumb.jpg\"/></a></div></td>" +
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=uk_portmansquare\">London, Portman Square, UK</a></p></td>" +
				"</tr></table>",
			"showall" : "<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr>" + 
					"<td align=\"left\" width=\"10%\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=europe_amsterdam\" set=\"yes\"><img border=\"0\" width=\"90\" alt=\"Amsterdam, The Netherlands\" src=\"/site/global/images/offices/invesco_logo.gif\" style=\"margin: 5px;\"/></a></div></td>" + 
					"<td align=\"left\" width=\"15%\"><a href=\"/portal/site/global/Offices?city=europe_amsterdam\">Amsterdam, The Netherlands</a></td>" + 
					"<td width=\"5%\"> </td>" + 
					"<td align=\"left\" width=\"10%\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=amer_atlanta\" set=\"yes\"><img border=\"0\" width=\"90\" alt=\"Atlanta, GA\" src=\"/site/global/images/offices/Atlanta_ImgMain_thumb.jpg\" style=\"margin: 5px;\"/></a></div></td>" + 
					"<td align=\"left\" width=\"15%\"><a href=\"/portal/site/global/Offices?city=amer_atlanta\">Atlanta, GA</a></td>" + 
					"<td width=\"5%\"> </td>" + 
					"<td align=\"left\" width=\"10%\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=amer_austin\" set=\"yes\"><img border=\"0\" width=\"90\" alt=\"Austin, TX\" src=\"/site/global/images/offices/Austin_ImgMain_thumb.jpg\" style=\"margin: 5px;\"/></a></div></td>" + 
					"<td align=\"left\" width=\"15%\"><a href=\"/portal/site/global/Offices?city=amer_austin\">Austin, TX</a></td>" + 
				"</tr>" + 
				"<tr>" + 
					"<td align=\"right\" width=\"10%\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=amer_baltimore\" set=\"yes\"><img border=\"0\" width=\"90\" alt=\"Baltimore, MD\" src=\"/site/global/images/offices/Baltimore_ImgMain_thumb.jpg\" style=\"margin: 5px;\"/></a></div></td>" + 
					"<td align=\"left\" width=\"15%\"><p><a href=\"/portal/site/global/Offices?city=amer_baltimore\">Baltimore, MD</a></p></td>" + 
					"<td width=\"5%\"> </td>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=asiapac_beijing\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Beijing, China\" src=\"/site/global/images/offices/Beijing_ImgMain_thumb_1.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=asiapac_beijing\">Beijing, China</a></p></td>" + 
					"<td width=\"5%\"> </td>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=amer_boston\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Boston, MA\" src=\"/site/global/images/offices/Boston_Invesco_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=amer_boston\">Boston, MA</a></p></td>" + 
				"</tr>" + 
				"<tr>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=uk_bracknell\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Bracknell, UK\" src=\"/site/global/images/offices/invesco_logo.gif\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=uk_bracknell\">Bracknell, UK</a></p></td>" + 
					"<td width=\"5%\"> </td>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=europe_brussels\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Brussels, Belgium\" src=\"/site/global/images/offices/Brussels_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=europe_brussels\">Brussels, Belgium</a></p></td>" + 
					"<td width=\"5%\"> </td>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=amer_calgary\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Calgary, Alberta\" src=\"/site/global/images/offices/Calgary_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=amer_calgary\">Calgary, Alberta</a></p></td>" + 
				"</tr>" + 
				"<tr>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=amer_charlottetown\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Boston, MA\" src=\"/site/global/images/offices/Charlottetown_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=amer_charlottetown\">Charlottetown, PEI</a></p></td>" + 
					"<td width=\"5%\"> </td>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=amer_chicago\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Chicago, IL\" src=\"/site/global/images/offices/Chicago_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=amer_chicago\">Chicago, IL</a></p></td>" + 
					"<td width=\"5%\"> </td>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=amer_dallas\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Dallas, TX\" src=\"/site/global/images/offices/Dallas_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=amer_dallas\">Dallas, TX</a></p></td>" + 
				"</tr>" + 
				"<tr>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=amer_denver\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Denver, CO\" src=\"/site/global/images/offices/Denver_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=amer_denver\">Denver, CO</a></p></td>" + 
					"<td width=\"5%\"> </td>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=middleeast_dubai\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Dubai, UAE\" src=\"/site/global/images/offices/Dubai_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=middleeast_dubai\">Dubai, UAE</a></p></td>" + 
					"<td width=\"5%\"> </td>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=uk_dublin\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Dublin, Ireland\" src=\"/site/global/images/offices/Dublin_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=uk_dublin\">Dublin, Ireland</a></p></td>" + 
				"</tr>" + 
				"<tr>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=europe_frankfurt\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Frankfurt, Germany\" src=\"/site/global/images/offices/Frankfurt_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=europe_frankfurt\">Frankfurt, Germany</a></p></td>" + 
					"<td width=\"5%\"> </td>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=uk_henley\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Henley, UK\" src=\"/site/global/images/offices/Henley_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=uk_henley\">Henley, UK</a></p></td>" + 
					"<td width=\"5%\"> </td>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=asiapac_hongkong\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Hong Kong\" src=\"/site/global/images/offices/HongKong_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=asiapac_hongkong\">Hong Kong</a></p></td>" + 
				"</tr>" + 
				"<tr>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=amer_houston\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Houston, TX\" src=\"/site/global/images/offices/Houston_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=amer_houston\">Houston, TX</a></p></td>" + 
					"<td width=\"5%\"> </td>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=asiapac_hyderabad\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Hyderabad, India\" src=\"/site/global/images/offices/Hyderabad_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=asiapac_hyderabad\">Hyderabad, India</a></p></td>" + 
					"<td width=\"5%\"> </td>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=uk_jersey\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Jersey (St. Helier), UK\" src=\"/site/global/images/offices/Jersey_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=uk_jersey\">Jersey (St. Helier), UK</a></p></td>" + 
				"</tr>" + 
				"<tr>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=uk_london\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"London, Finsbury Square, UK\" src=\"/site/global/images/offices/LondonPerpetual_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=uk_london\">London, Finsbury Square, UK</a></p></td>" + 
					"<td width=\"5%\"> </td>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=uk_portmansquare\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"London, Portman Square, UK\" src=\"/site/global/images/offices/LondonInvesco_ImgMain_thumb.jpg\"/></a></div></td>" +
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=uk_portmansquare\">London, Portman Square, UK</a></p></td>" +
					"<td width=\"5%\"> </td>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=amer_louisville\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Louisville, KY\" src=\"/site/global/images/offices/Louisville_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=amer_louisville\">Louisville, KY</a></p></td>" + 
				"</tr>" + 
				"<tr>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=europe_luxembourg\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Luxembourg\" src=\"/site/global/images/offices/invesco_logo.gif\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=europe_luxembourg\">Luxembourg</a></p></td>" +
					"<td width=\"5%\"> </td>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=europe_madrid\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Madrid, Spain\" src=\"/site/global/images/offices/Madrid_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=europe_madrid\">Madrid, Spain</a></p></td>" + 
					"<td width=\"5%\"> </td>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=asiapac_melbourne\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Melbourne, Australia\" src=\"/site/global/images/offices/Melbourne_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=asiapac_melbourne\">Melbourne, Australia</a></p></td>" + 
				"</tr>" + 
				"<tr>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=europe_milan\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Milan, Italy\" src=\"/site/global/images/offices/invesco_logo.gif\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=europe_milan\">Milan, Italy</a></p></td>" + 
					"<td width=\"5%\"> </td>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=amer_montreal\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Montreal, Quebec\" src=\"/site/global/images/offices/Montreal_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=amer_montreal\">Montreal, Quebec</a></p></td>" + 
					"<td width=\"5%\"> </td>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=asiapac_mumbai\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Mumbai, India\" src=\"/site/global/images/offices/invesco_logo.gif\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=asiapac_mumbai\">Mumbai, India</a></p></td>" +
				"</tr>" + 
				"<tr>" +  	
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=europe_munich\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Munich, Germany\" src=\"/site/global/images/offices/Munich_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=europe_munich\">Munich, Germany</a></p></td>" +  
					"<td width=\"5%\"> </td>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=amer_newport\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Newport Beach, CA\" src=\"/site/global/images/offices/invesco_logo.gif\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=amer_newport\">Newport Beach, CA</a></p></td>" + 
					"<td width=\"5%\"> </td>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=amer_newyork\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Henley, UK\" src=\"/site/global/images/offices/NYAtlantic_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=amer_newyork\">New York, NY</a></p></td>" + 				
				"</tr>" + 
				"<tr>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=europe_paris\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Paris, France\" src=\"/site/global/images/offices/Paris_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=europe_paris\">Paris, France</a></p></td>" + 
					"<td width=\"5%\"> </td>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=amer_portland\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Portland, OR\" src=\"/site/global/images/offices/invesco_logo.gif\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=amer_portland\">Portland, OR</a></p></td>" + 
					"<td width=\"5%\"> </td>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=europe_prague\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Prague, CZ\" src=\"/site/global/images/offices/Prague_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=europe_prague\">Prague, CZ</a></p></td>" + 
				"</tr>" + 
				"<tr>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=amer_sanfrancisco\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"San Francisco, CA\" src=\"/site/global/images/offices/invesco_logo.gif\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=amer_sanfrancisco\">San Francisco, CA</a></p></td>" + 
					"<td width=\"5%\"> </td>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=amer_sanjuan\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"San Juan, PR\" src=\"/site/global/images/offices/invesco_logo.gif\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=amer_sanjuan\">San Juan, PR</a></p></td>" + 
					"<td width=\"5%\"> </td>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=asiapac_seoul\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Seoul, Korea\" src=\"/site/global/images/offices/Seoul_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=asiapac_seoul\">Seoul, South Korea</a></p></td>" + 
				"</tr>" + 
				"<tr>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=asiapac_shanghai\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Shangai, China\" src=\"/site/global/images/offices/Shanghai_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=asiapac_shanghai\">Shanghai, China</a></p></td>" +
					"<td width=\"5%\"> </td>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=asiapac_shenzhencity\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Shenzhen, China\" src=\"/site/global/images/offices/Shenzhen_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=asiapac_shenzhencity\">Shenzhen, China</a></p></td>" +  
					"<td width=\"5%\"> </td>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=asiapac_singapore\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Singapore\" src=\"/site/global/images/offices/Singapore_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=asiapac_singapore\">Singapore</a></p></td>" +  
				"</tr>" + 
				"<tr>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=asiapac_sydney\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Sydney, Australia\" src=\"/site/global/images/offices/invesco_logo.gif\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=asiapac_sydney\">Sydney, Australia</a></p></td>" +  
					"<td width=\"5%\"> </td>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=asiapac_taipei\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Taipei, Taiwan\" src=\"/site/global/images/offices/Taipei_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=asiapac_taipei\">Taipei, Taiwan</a></p></td>" + 
					"<td width=\"5%\"> </td>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=asiapac_tokyo\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Tokyo, Japan\" src=\"/site/global/images/offices/Tokyo_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=asiapac_tokyo\">Tokyo, Japan</a></p></td>" +  
				"</tr>" +
				"<tr>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=amer_toronto\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Toronto, Ontario\" src=\"/site/global/images/offices/TorontoYonge_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=amer_toronto\">Toronto, Ontario</a></p></td>" +
					"<td width=\"5%\"> </td>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=amer_vancouver\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Vancouver, BC\" src=\"/site/global/images/offices/Vancouver_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=amer_vancouver\">Vancouver, BC</a></p></td>" + 
					"<td width=\"5%\"> </td>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=europe_vienna\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Vienna, Austria\" src=\"/site/global/images/offices/Vienna_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=europe_vienna\">Vienna, Austria</a></p></td>" +
				"</tr>" +
				"<tr>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=amer_washington\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Washington, DC\" src=\"/site/global/images/offices/invesco_logo.gif\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=amer_washington\">Washington, DC</a></p></td>" +
					"<td width=\"5%\"> </td>" + 
					"<td align=\"right\"><div align=\"left\"><a href=\"/portal/site/global/Offices?city=europe_zurich\" set=\"yes\"><img border=\"0\" width=\"90\" style=\"margin: 5px;\" alt=\"Zurich, Switzerland\" src=\"/site/global/images/offices/Zurich_ImgMain_thumb.jpg\"/></a></div></td>" + 
					"<td align=\"left\"><p><a href=\"/portal/site/global/Offices?city=europe_zurich\">Zurich, Switzerland</a></p></td>" + 
					"<td width=\"5%\"> </td>" + 
					"<td> </td>" + 
					"<td> </td>" + 
				"</tr></table>"
		};
		
		document.getElementById('loctable').innerHTML = squaresArray[x];
		//document.write(squaresArray[x])
		

}




function loadDetails(y) {
	
	detailsArray = {
		"amer_atlanta" : "<h3>ATLANTA</h3>" +
			"<div class='loc-city'>" + 
			"<br>Invesco Global Headquarters<br>Two Peachtree Pointe<br>1555 Peachtree Street, N.E., Suite 1800<br>Atlanta, Georgia 30309<br>U.S.A.<br>" +
			"<p><strong>Atlantic Trust</strong><br>Phone +1 404 881 3400 <br>Fax +1 404 881 3401<br>Website: <a href='http://www.atlantictrust.com' target='_new'>http://www.atlantictrust.com</a><!--<br>Function: Wealth Management Services--></p>" + 
			"<p><strong>Invesco</strong><br>Phone +1 800 241 5477<br>Phone +1 404 892 0896<br>Fax +1 404 439 4911<br>Internet Site: <a href='http://www.invesco.com'>http://www.invesco.com</a><!--<br>Function: Corporate services--></p>" +
			"<p><strong>Invesco Advisers</strong><br>Invesco Global Strategies<br>Phone +1 404 892 0896<br>Fax +1 404 439 4911<br>Website: <a href='http://www.institutional.invesco.com' target='_new'>http://www.institutional.invesco.com</a><!--<br>Function: Investment management, marketing and client service--></p>" +
			"<p><strong>Invesco National Trust Company</strong><br>Fax +1 404 439 4580<br>Website: <a href='http://www.invesconationaltrust.com/'>www.invesconationaltrust.com</a><!--<br>Function: Trust and client services--></p>" +
			"</div>", 
		"amer_austin" : "<h3>AUSTIN</h3>" +
			"<div class='loc-city'>" + 
			"<br>401 Congress Avenue <br>Suite 2450<br>Austin, Texas 78701-3744<br>U.S.A.<br>" +
			"<p><strong>Atlantic Trust</strong><br>Phone +1 512 651 7800<br>Fax +1 512 651 7810</p>" + 
			"<hr>" +
			"<br>301 Congress Avenue<br>Suite 1800<br>Austin, Texas 78701<br>U.S.A.<br>" +
			"<p><strong>Invesco Advisers</strong><br>Invesco <br>Phone +1 800 457 0630<br>Fax +1 512 424 3189<br>Website: <a href='http://www.invesco.com/portal/site/us' target='_new'>http://www.invesco.com/portal/site/us/</a><!--<br>Function: Investment management--></p>" +
			"</div>",
		"amer_baltimore" : "<h3>BALTIMORE</h3>" +
			"<div class='loc-city'>" + 
			"<br>100 East Pratt Street<br>Suite 2550<br>Baltimore, Maryland 21202<br>U.S.A.<br>" +
			"<p><strong>Atlantic Trust</strong><br>Phone +1 410 539 4660<br>Fax +1 410 539 4661<br>Website: <a href='http://www.atlantictrust.com' target='_new'>http://www.atlantictrust.com</a><!--<br>Function: Wealth Management Services--></p>" + 
			"</div>",  
		"amer_boston" : "<h3>BOSTON</h3>" +
			"<div class='loc-city'>" + 
			"<br>100 Federal Street, 37th Floor<br>Boston, Massachusetts 02110-1802<br>U.S.A.<br>" +
			"<p><strong>Atlantic Trust</strong><br>Phone +1 617 357 9600<br>Fax +1 617 357 9602<br>Website: <a href='http://www.atlantictrust.com' target='_new'>http://www.atlantictrust.com</a><!--<br>Function: Wealth Management Services--></p>" + 
			"<hr>" +
			"<br>100 Federal Street, 28th Floor<br>Boston, Massachusetts 02110-1802<br>U.S.A.<br>" +
			"<p><strong>Invesco Advisers</strong><br>Invesco Global Strategies</strong><br>Phone +1 617 345 8200<br>Fax +1 617 261 4560<br>Website: <a href='http://www.institutional.invesco.com' target='_new'>http://www.institutional.invesco.com</a><!--<br>Function: Investment management, marketing and client service--></p>" +
			"</div>",  
		"amer_calgary" : "<h3>CALGARY</h3>" +
			"<div class='loc-city'>" + 
			"<br>400 3rd Avenue S.W.<br>Devon Tower, Suite 3450<br>Calgary Alberta<br>T2P 4H2<br>Canada<br>" +
			"<p><strong>Invesco Canada</strong><br>Phone +1 888 543 7980<br>Fax +1 403 543 7991<br>Website: <a href='http://www.invesco.ca' target='_new'>http://www.invesco.ca</a><!--<br>Function: Client service--></p>" + 
			"</div>",  
		"amer_charlottetown" : "<h3>CHARLOTTETOWN</h3>" +
			"<div class='loc-city'>" + 
			"<br>119 Euston Street<br>Charlottetown, PEI<br>C1A 1W3<br>Canada<br>" +
			"<p><strong>Invesco Enterprise Center</strong><br>Phone +1 902 620 6700<br>Fax +1 902 620 6875<!--<br>Function: Global Enterprise Center--></p>" + 
			"</div>",  
		"amer_chicago" : "<h3>CHICAGO</h3>" +
			"<div class='loc-city'>" + 
			"<br>One South Wacker Drive<br>Suite 3500<br>Chicago, Illinois 60606-4614<br>U.S.A. <br>" +
			"<p><strong>Atlantic Trust</strong><br>Phone: +1 312 368-7700<br>Fax: +1 312 368-8136<br>Website: <a href='http://www.sric.net' target='_new'>http://www.sric.net</a><!--<br>Function: Wealth Management Services--></p>" + 
			"<hr>" +
			"<br>301 W. Roosevelt<br>Wheaton, Illinois 60187<br>U.S.A.<br>" +
			"<p><strong>Invesco PowerShares</strong><br>Phone +1 630-933-9600<br>Fax +1 630-933-9699<br>Website: <a href='http://www.powersharesetns.com/portal/site/etns<br>Website: <a href='http://www.invescopowershares.com' target='_new'>http://www.invescopowershares.com</a><!--<br>Function: Investment management, marketing and client service--></p>" + 
			"<hr>" +
			"<br>17W110 22nd Street<br>Oakbrook Terrace, IL 60181<br>U.S.A.<br><br>" +
			"<p><strong>Invesco Fixed Income</strong><br>Phone: +1 630 684 6000<br>Website: <a href='http://www.vankampen.com' target='_new'>http://www.vankampen.com</a></p>" + 
			"</div>",  
		"amer_dallas" : "<h3>DALLAS</h3>" +
			"<div class='loc-city'>" + 
			"<br>Three Galleria Tower<br>Suite 500<br>13155 Noel Road<br>Dallas, Texas 75240 <br>U.S.A.<br>" +
			"<p><strong>Invesco Advisers</strong><br>Invesco Real Estate<br>Phone +1 972 715 7400<br>Fax +1 972 715 7474<br>Website: <a href='http://www.invescorealestate.com' target='_new'>http://www.invescorealestate.com</a><!--<br>Function: Investment management, marketing and client service--></p>" + 
			"</div>",  
		"amer_denver" : "<h3>DENVER</h3>" +
			"<div class='loc-city'>" + 
			"<br>4600 S. Syracuse Street<br>Suite 900<br>Denver, Colorado 80237<br>U.S.A.<br>" +
			"<p><strong>Invesco Private Capital</strong><br>Fax +1 720-624-1913<br>Website: <a href='http://www.invescoprivatecapital.com' target='_new'>http://www.invescoprivatecapital.com</a><!--<br>Function: Retirement services, record keeping and administration--></p>" +
			"<hr>" +
			"<br>1700 Lincoln Street <br>Suite 2550<br>Denver, Colorado 80203-4502<br>U.S.A. <br>" +
			"<p><strong>Atlantic Trust</strong><br>Phone +1 720 221 5000<br>Fax +1 303 296 0111 <br>Website: <a href='http://www.atlantictrust.com' target='_new'>http://www.atlantictrust.com</a><!--<br>Function: Wealth Management Services--></p>" + 
			"</div>",  
		"amer_houston" : "<h3>HOUSTON</h3>" +
			"<div class='loc-city'>" + 
			"11 Greenway Plaza<br>Suite 2500<br>Houston, Texas 77046-1173<br>U.S.A. <br>" +
			"<p><strong>Atlantic Trust</strong><br>Phone + 1 713 214 7640<br>Fax +1 713 214 7566<br>Internet Site <a href='http://www.atlantictrust.com' target='_new'>http://www.atlantictrust.com</a><!--<br>Function: Wealth Management Services--></p>" + 
			"<hr>" +
			"<br>11 Greenway Plaza<br>Suite 2500<br>Houston, Texas 77046-1173<br>U.S.A.<br>" +
			"<p><strong>Invesco Advisers</strong><br>Invesco <br>Invesco Fixed Income</strong><br>Phone +1 713 626 1919<br>Fax +1 713 993 9890<br>Website: <a href='http://www.invesco.com/portal/site/us' target='_new'>http://www.invesco.com</a><!--<br>Function: Investment management--></p>" +
			"<p><strong>Invesco Investment Services, Inc.</strong><br>Phone +1 800 959 4246<br>Website: <a href='http://www.invesco.com/portal/site/us' target='_new'>http://www.invesco.com/portal/site/us</a><!--<br>Function: Client service--></p>" +
			"</div>", 
		"amer_louisville" : "<h3>LOUISVILLE</h3>" +
			"<div class='loc-city'>" + 
			"<br>The Aegon Building<br>400 West Market Street<br>Suite 3300<br>Louisville, Kentucky 40202 <br>U.S.A.<br>" +
			"<p><strong>Invesco Advisers</strong><br>Invesco Fixed Income</strong><br>Phone +1 502 589 2011<br>Fax +1 502 589 2157<br>Website: <a href='http://www.institutional.invesco.com' target='_new'>http://www.institutional.invesco.com</a><!--<br>Function: Investment management, marketing and client service--></p>" + 
			"</div>",  
		"amer_montreal" : "<h3>MONTREAL</h3>" +
			"<div class='loc-city'>" + 
			"<br>Tour McGill College<br>1501 Ave McGill College,<br>Bureau 2110<br>Montreal Quebec <br>H3A 3M8<br>Canada<br>" +
			"<p><strong>Invesco Canada</strong><br>Phone +1 514 288 3647 or +1 800 567 7760<br>Fax +1 514 288 0890<br>Website: <a href='http://www.invesco.ca' target='_new'>http://www.invesco.ca</a><!--<br>Function: Client service--></p>" + 
			"<p><strong>Invesco Institutional</strong><br>Phone +1 514 288 3647 or +1 800 567 7760<br>Fax +1 514 288 0890<br>Website: <a href='http://www.institutional.invesco.ca' target='_new'> http://www.institutional.invesco.ca</a><!--<br>Function: Client service--></p>" + 
			"</div>",  
		"amer_newport" : "<h3>NEWPORT BEACH</h3>" +
			"<div class='loc-city'>" + 
			"<br>4675 MacArthur Court<br>Suite 1150<br>Newport Beach, California 92660<br>U.S.A.<br>" +
			"<p><strong>Atlantic Trust</strong><br>Phone: +1 949 660-0080<br>Fax: +1 949 474-8430<br>Website: <a href='http://www.sric.net' target='_new'>http://www.sric.net</a><!--<br>Function: Wealth Management Services--></p>" +
			"<hr>" +
			"<p><strong>Invesco Advisers</strong><br>Invesco Real Estate<br>Phone: +1 949 222-6380<br>Fax: +1 949 222-6376<br>Website: <a href='http://www.invescorealestate.com/' target='_new'>http://www.invescorealestate.com</a><!--<br>Function: Real Estate--></p>" + 
			"</div>",    
		"amer_newyork" : "<h3>NEW YORK</h3>" +
			"<div class='loc-city'>" + 
			"<br>1166 Avenue of the Americas<br>26th Floor<br>New York, NY 10036 <br>U.S.A.<br>" +
			"<p><strong>Invesco Advisers</strong><br>Invesco Fixed Income<br>Phone +1 212 278 9000<br>Fax +1 212 278 9418<br>Website: <a href='http://www.institutional.invesco.com' target='_new'>http://www.institutional.invesco.com</a><!--<br>Function: Investment management and client service--></p>" +
			"<p><strong>Invesco Real Estate</strong><br>Phone +1 212 278 9000<br>Fax +1 212 278 9418<br>Website: <a href='http://www.invescorealestate.com' target='_new'>http://www.invescorealestate.com</a><!--<br>Function: Real Estate--></p>" +
			"<p><strong>Invesco Private Capital</strong><br>Phone +1 212 278 9000<br>Fax +1 212 278 9822 (general) 212 278 9619 (senior secured)<br>Website: <a href='http://www.invescoprivatecapital.com' target='_new'>http://www.invescoprivatecapital.com</a><!--<br>Function: Investment management, marketing and client service--></p>" +
			"<p><strong>Invesco Senior Secured</strong><br>Invesco Fixed Income<br>Phone: +1 212 278 9000<br>Fax: +1 212 278 9619<br>Website: <a href='http://www.institutional.invesco.com/portal/site/invescoinst/menuitem.df0c8a45f11103be5988d60ae14bfba0' target='_new'>http://www.institutional.invesco.com</a></p>" + 
			"<p><strong>WL Ross & Co.</strong><br>Phone: +1 212 826 1100<br>Fax: +1 212 317 4893<br>Website: <a href='http://www.wlross.com' target='_new'>http://www.wlross.com</a></p>" + 
			"<hr>" +
			"1177 Avenue of the Americas<br>42nd Floor<br>New York, NY 10036-2714<br>U.S.A." +
			"<p><strong>Atlantic Trust</strong><br>Phone: +1 212 259 3800<br>Fax: +1 212 259 3888<br>Website: <a href='www.atlantictrust.com' target='_new'>www.atlantictrust.com</a><!--<br>Function: Wealth Management Services--></p>" +
			"</div>",  
		"amer_oakbrook" : "<h3>OAKBROOK TERRACE</h3>" +
			"<div class='loc-city'>" + 
			"<br>17W110 22nd Street<br>Oakbrook Terrace, IL 60181<br>U.S.A.<br><br>" +
			"<p>Phone: +1 630 684 6000<br>Website: <a href='http://www.vankampen.com' target='_new'>http://www.vankampen.com</a></p>" + 
			"</div>",  
		"amer_portland" : "<h3>PORTLAND</h3>" +
			"<div class='loc-city'>" + 
			"<br>1000 Southwest Broadway<br>Suite 1110<br>Portland, Oregon 97205<br>U.S.A.<br>" +
			"<p><strong>Invesco Advisers</strong><br>Phone +1 503 241 6515<br>Fax +1 503 241 8440<br>Website: <a href='http://www.institutional.invesco.com' target='_new'>http://www.institutional.invesco.com</a><!--<br>Function: Marketing and client service--></p>" + 
			"</div>",  
		"amer_sanfrancisco" : "<h3>SAN FRANCISCO</h3>" +
			"<div class='loc-city'>" + 
			"<br>Three Embarcadero Center<br>Suite 1600<br>San Francisco, California 94111-4019<br>U.S.A. <br>" +
			"<p><strong>Atlantic Trust</strong><br>Phone: (415) 433-5844<br>Fax: (415) 397-6639<br>Website: <a href='http://www.sric.net' target='_new'>http://www.sric.net</a><!--<br>Function: Wealth Management Services--></p>" +
			"<hr>" +
			"<br>101 California Street, Suite 1900<br>San Francisco, California 94111<br>U.S.A.<br>" +
			"<p><strong>Invesco Advisers</strong><br>Phone +1 800-556-6234 <br>Fax +1 415 445-7549<br>Website: <a target=new href='http://www.institutional.invesco.com'>http://www.institutional.invesco.com</a><!--<br>Function: Marketing and client service--></p>" +
			"<p>Invesco <br>Phone +1 415 445 3343<br>Toll +1 800 448 2032<br>Fax +1 415 956 5617<br>Website: <a href='http://www.invescoglobalcash.com' target='_new'>http://www.invescoglobalcash.com</a><!--<br>Function: Investment management and client service for mutual funds--></p>" +
			"<p><strong>Invesco Real Estate</strong><br>Phone +1 415 445-7558<br>Fax +1 415 445-7549<br>Website: <a href='http://www.invescorealestate.com' target='_new'>http://www.invescorealestate.com</a><!--<br>Function: Marketing and client service--></p>" +
			"<p><strong>Invesco Private Capital</strong><br>Phone +1 415 445-3344<br>Fax +1 415 445-3398<br>Website: <a href='http://invescoprivatecapital.com' target='_new'>http://invescoprivatecapital.com</a><!--<br>Function: Private Equity, Fund of Funds Management and Direct Venture Funds--></p>" +
			"</div>",  
		"amer_sanjuan" : "<h3>SAN JUAN (HATO REY)</h3>" +
			"<div class='loc-city'>" + 
			"<br>250 Munoz Rivera Avenue<br>America International Plaza, Suite 406 <br>Hato Rey PR00918<br>Puerto Rico<br>" +
			"<p><strong>Invesco Advisers</strong><br>Phone +1 787 771 2960<br>Fax +1 787 753 9683<br>Website: <a href='http://www.institutional.invesco.com' target='_new'>http://www.institutional.invesco.com</a><!--<br>Function: Marketing and client service--></p>" + 
			"</div>",  
		"amer_toronto" : "<h3>TORONTO</h3>" +
			"<div class='loc-city'>" + 
			"<br>120 Bloor Street East<br>Suite 700<br>Toronto, Ontario<br>M4W 1B7<br>Canada<br>" +
			"<p><strong>Invesco Canada Ltd.</strong><br>Phone +1 800 588 4880<br>Fax +1 416 590 7742<br>Websites: <a href='http://www.invesco.ca' target='_new'>http://www.invesco.ca</a>, <a href='http://www.powershares.ca' target='_new'>http://www.powershares.ca</a>, <a href='http://www.institutional.invesco.ca' target='_new'> http://www.institutional.invesco.ca</a><!--<br>Function: Investment management, marketing and client service--></p>" + 
			"<hr>" +
			"<br>5140 Yonge Street<br>Suite 800<br>Toronto, Ontario<br>M2N 6X7<br>Canada<br>" +
			"<p><strong>Invesco Canada Ltd.</strong><br>Phone +1 416 590 9855, +1 800 874 6275<br>Fax +1 416 590 9868<br>Websites: <a href='http://www.invesco.ca' target='_new'>http://www.invesco.ca</a>, <a href='http://www.powershares.ca' target='_new'>http://www.powershares.ca</a>, <a href='http://www.institutional.invesco.ca' target='_new'>http://www.institutional.invesco.ca</a><!--<br>Function: Head office, client service, and back office services--></p>" +
			"</div>",  
		"amer_vancouver" : "<h3>VANCOUVER</h3>" +
			"<div class='loc-city'>" + 
			"<br>885 West Georgia Street<br>Suite 1600<br>Vancouver British Columbia<br>V6C 3E8<br>Canada<br>" +
			"<p><strong>Invesco Canada</strong><br>Phone +1 604 681 9393<br>Fax +1 604 681 9355<br>Website: <a href='http://www.invesco.ca' target='_new'>http://www.invesco.ca</a><!--<br>Function: Client service--></p>" + 
			"</div>",  
		"amer_washington" : "<h3>WASHINGTON, DC</h3>" +
			"<div class='loc-city'>" + 
			"<br>575 7th Street, NW<br>Suite 450<br>Washington, D.C. 20004<br>U.S.A.<br>" +
			"<p><strong>Atlantic Trust</strong><br>Phone +1 202 783 4144<br>Fax +1 202 737 5487<br>Website: <a href='http://www.atlantictrust.com' target='_new'>http://www.atlantictrust.com</a><!--<br>Function: Wealth Management Services--></p>" + 
			"</div>",  
		"amer_wheaton" : "<h3>WHEATON</h3>" +
			"<div class='loc-city'>" + 
			"<br>301 W. Roosevelt<br>Wheaton, Illinois 60187<br>U.S.A.<br>" +
			"<p><strong>Invesco PowerShares</strong><br>Phone +1 630-933-9600<br>Fax +1 630-933-9699<br>Website: <a href='http://www.powersharesetns.com/portal/site/etns<br>Website: <a href='http://www.invescopowershares.com' target='_new'>http://www.invescopowershares.com</a><!--<br>Function: Investment management, marketing and client service--></p>" + 
			"</div>",  
		"asiapac_beijing" : "<h3>BEIJING</h3>" +
			"<div class='loc-city'>" + 
			"<br>Suite 627, 6/F<br>Winland International Finance Center<br>7 Finance Street, Xicheng District<br>Beijing, 100033, <br>People's Republic of China<br>" +
			"<p><strong>Invesco Hong Kong Limited (Beijing Representative Office)</strong><br>Phone +86 10 6655 5800<br>Fax +86 10 6655 5811<br>Website: <a href='http://www.invesco.com.hk' target='_new'>http://www.invesco.com.hk</a><!--<br>Function: Non-Operating Activities such as Consultancy, Liaison and Market Research--></p>" + 
			"<br>Suite 628, 6th Floor<br>Winland International Finance Center<br>7 Finance Street, Xicheng District<br>Beijing 100140<br>People's Republic of China<br>" +
			"<p><strong>Huaneng Invesco WLR Investment Consulting Company Ltd (Joint Venture)</strong><br>Phone +86 10 6655 5358<br>Fax +86 10 6655  3869<br>Website: <a href='http://www.invesco.com.hk' target='_new'>http://www.invesco.com.hk</a><!--<br>Function: Investment advisory and consultancy service--></p>" + 
			"</div>",
		"asiapac_hongkong" : "<h3>HONG KONG</h3>" +
			"<div class='loc-city'>" + 
			"<br>41/F Citibank Tower<br>3 Garden Road, Central<br>Hong Kong<br>" +
			"<p><strong>Invesco Hong Kong Limited</strong><br>Phone +852 3128 6000<br>Fax +852 3128 6001<br>Website: <a href='http://www.invesco.com.hk' target='_new'>http://www.invesco.com.hk</a><!--<br>Function: Marketing and client service--></p>" + 
			"</div>",
		"asiapac_hyderabad" : "<h3>HYDERABAD</h3>" +
			"<div class='loc-city'>" + 
			"<p><strong>Invesco (Hyderabad) Private Limited (SEZ Unit)</strong><br>DivyaSree Orion<br>14th &amp; 15th Floor, Block 6 &#151; North Tower<br>Survey # 66/1, Raidurga<br>Serilingampally Mandal, RangaReddy District<br>Hyderabad &#151; 500 032<br><br>Tel: +91 40 674 80000</p>" +
			"</div>",	
		"asiapac_melbourne" : "<h3>MELBOURNE</h3>" +
			"<div class='loc-city'>" + 
			"<br>Level 26, 333 Collins Street<br>Melbourne<br>Victoria 3000<br>Australia<br>" +
			"<p><strong>Invesco Australia Limited</strong><br>Phone +613 9611 3600<br>Fax +613 9611 3800<br>Website: <a href='http://www.invesco.com.au' target='_new'>http://www.invesco.com.au</a><!--<br>Function: Investment Management, marketing and client service--></p>" + 
			"</div>",
		"asiapac_mumbai" : "<h3>MUMBAI</h3>" +
			"<div class='loc-city'>" + 
			"<br>Suite 117<br>Maker Chamber III<br>Nariman Point<br>Mumbai 400021<br>Phone +91 40 66041750<br>" +
			"<p><strong>WL Ross (India) Private Limited</strong><br>Phone +91 22 2289 6150<br>Website: <a href='http://www.wlross.com' target='_new'>http://www.wlross.com</a></p>" +
			"</div>",	
		"asiapac_seoul" : "<h3>SEOUL</h3>" +
			"<div class='loc-city'>" + 
			"<br>31F, One IFC, 23, Yoido-dong,<br>Youngdeungpo-gu<br>Seoul, 150-876 Korea<br>" +
			"<p><strong>Invesco Real Estate Korea</strong><br>Phone +82 2 6330 7307<!--<br>Website: <a href='http://www.institutional.invesco.com/portal/site/invescoinst/menuitem.940167460d7cf5ea8f46d16af14bfba0/' target='_new'>http://www.invescorealestate.com</a><!- -<br>Function: Real Estate--></p>" + 
			"</div>",
		"asiapac_shanghai" : "<h3>SHANGHAI</h3>" +
			"<div class='loc-city'>" + 
			"<br>Suite 448, Shanghai Centre<br>1376 Nanjing Road (W)<br>Shanghai 200040 China<br>" +
			"<p><strong>Invesco Real Estate Asia Limited</strong><br>Phone +86 21 5208 0868<br>Fax +86 21 5208 0191<br>Website: <a href='http://www.institutional.invesco.com/portal/site/invescoinst/menuitem.940167460d7cf5ea8f46d16af14bfba0/' target='_new'>http://www.invescorealestate.com</a><!--<br>Function: Real Estate--></p>" + 
			"</div>",
		"asiapac_shenzhencity" : "<h3>SHENZHEN CITY</h3>" +
			"<div class='loc-city'>" + 
			"<br>21st Floor, Tower 1, Kerry Plaza<br>No. 1 Zhong Xin Si Road<br>Futian District, Shenzhen, PRC<br>People's Republic of China<br>" +
			"<p><strong>Invesco Great Wall Fund Management Company Limited (Joint Venture)</strong><br>Phone +86 755 8237 0388<br>Fax +86 755 2238 1320<br>Website: <a href='http://www.invescogreatwall.com' target='_new'>http://www.invescogreatwall.com</a><!--<br>Functions: Investment management, marketing, client services--></p>" + 
			"</div>",
		"asiapac_singapore" : "<h3>SINGAPORE</h3>" +
			"<div class='loc-city'>" + 
			"<br>Tung centre #10-03<br>20 Collyer Quay<br>Singapore 049319<br>" +
			"<p><strong>Invesco Asset Management Singapore Ltd</strong><br>Phone +65 6603 9180<br>Fax +65 6603 9190<br>Website: <a href='http://www.invesco.com.hk' target='_new'>http://www.invesco.com.hk</a><!--<br>Function: Investment management, marketing and client service--></p>" + 
			"</div>",
		"asiapac_sydney" : "<h3>SYDNEY</h3>" +
			"<div class='loc-city'>" + 
			"<br>Level 17, 56 Pitt Street<br>Sydney NSW 2000<br>Australia<br>" +
			"<p><strong>Invesco Australia Limited</strong><br>Phone +61 (2) 8231 8700<br>Fax +61 (2) 9006 3030<br>Website: <a href='http://www.invesco.com.au' target='_new'>http://www.invesco.com.au</a><!--<br>Function: Marketing--></p>" + 
			"</div>",
		"asiapac_taipei" : "<h3>TAIPEI</h3>" +
			"<div class='loc-city'>" + 
			"<br>22F, No.1 Songzhi Road<br>Taipei 11047, Taiwan, R.O.C.<br>" +
			"<p><strong>Invesco Taiwan Limited</strong><br>Phone +886 2 8729 9999<br>Fax +886 2 8729 9988<br>Website: <a href='http://www.invesco.com.tw' target='_new'>http://www.invesco.com.tw</a><!--<br>Function: Investment Management, marketing and client service--></p>" + 
			"</div>",
		"asiapac_tokyo" : "<h3>TOKYO</h3>" +
			"<div class='loc-city'>" + 
			"<br>Roppongi Hills Mori Tower 14F<br>P.O. Box 115<br>6-10-1 Roppongi, Minato-ku, Tokyo 106-6114<br>" +
			"<p><strong>Invesco Asset Management (Japan) Limited</strong><br>Phone +81 (03) 6447 3000<br>Fax +81 (03) 6447 3001<br>Website: <a href='http://www.invesco.co.jp' target='_new'>http://www.invesco.co.jp</a></p>" + 
			"<hr>" +
			"Roppongi Hills Mori Tower 14F<br>P.O. Box 116 <br>6-10-1 Roppongi, Minato-ku, Tokyo 106-6114" +
			"<p><strong>Invesco Global Real Estate Asia Pacific, Inc. Japan Branch</strong><br>Phone +81 (03) 6447 3300<br>Fax +81 (03) 6447 3399<br>Website: <a href='http://www.invesco.co.jp' target='_new'>http://www.invesco.co.jp</a></p>" + 
			"</div>",
		"europe_amsterdam" : "<h3>AMSTERDAM</h3>" +
			"<div class='loc-city'>" + 
			"<br>J.C. Geesinkweg 999<br>1096 AZ Amsterdam<br>The Netherlands<br>" +
			"<p><strong>Invesco Asset Management S.A. – Representative Office</strong><br>Phone +31 205 61 62 61<br>Fax +31 205 61 68 88<br>Website: <a href='http://www.invesco.nl' target='_new'>http://www.invesco.nl</a><!--<br>Function: Marketing and client service--></p>" + 
			"</div>",
		"europe_brussels" : "<h3>BRUSSELS</h3>" +
			"<div class='loc-city'>" + 
			"<br>The Blue Tower, 11th floor<br>Avenue Louise 326, Box 31<br>B-1050, Brussels, Belgium<br>" +
			"<p><strong>Invesco Asset Management S.A. - Belgium Branch</strong><br>Phone +322 641 0170<br>Fax +322 641 0175<br>Website: <a href='http://www.invesco.be'>http://www.invesco.be</a><!--<br>Function: Marketing, sales and client service--></p>" + 
			"<p><strong>Invesco CE Services, S.A.</strong><br>Phone +322 641 0127<br>Fax +322 641 0160/90<br>Website: <a href='http://www.invesco.be'>http://www.invesco.be</a><!--<br>Function: Corporate service--></p>" +
			"</div>",
		"europe_frankfurt" : "<h3>FRANKFURT</h3>" +
			"<div class='loc-city'>" + 
			"<br>An der Welle 5<br>1st Floor<br>60322 Frankfurt am Main<br>Germany<br>" +
			"<p><strong>Invesco Asset Management Deutschland GmbH</strong><br>Invesco Global Strategies<br><strong>Invesco Kapitalanlagegesellschaft mbH</strong><br>Phone +49 69 29807 0<br>Fax +49 69 29807 159<br>Website: <a href='http://www.de.invesco.com' target='_new'>http://www.de.invesco.com</a><!--<br>Function: Investment administration--></p>" + 
			"</div>",
		"europe_luxembourg" : "<h3>LUXEMBOURG</h3>" +
			"<div class='loc-city'>" + 
			"<br>26 Boulevard Royal<br>2449 Luxembourg<br>Luxembourg<br>" +
			"<p><strong>Invesco Real Estate Management S.a.r.l.</strong><br>Phone +352 22 99 99 57 64<br>Email: <a href='mailto:realestate@lux.invesco.com' target='_new'>realestate@lux.invesco.com</a></p>" +
			"</div>",
		"europe_madrid" : "<h3>MADRID</h3>" +
			"<div class='loc-city'>" + 
			"<br>Calle Recoletos 15, Piso 1<br>28001 Madrid<br>Spain<br>" +
			"<p><strong>Invesco Asset Management S.A. - Branch Office</strong><br>Phone +34 902 510 907<br>Fax +34 902 510 876<br>Website: <a href='http://www.invesco.es' target='_new'>http://www.invesco.es</a><!--<br>Function: Marketing and client service--></p>" +
			"<p><strong>Invesco Real Estate</strong><br>Phone +34 902 510 907<br>Fax +34 91 5760 520<br>Website: <a href='http://www.invescorealestate.co.uk' target='_new'>http://www.invescorealestate.co.uk</a></p>" + 
			"</div>",
		"europe_milan" : "<h3>MILAN</h3>" +
			"<div class='loc-city'>" + 
			"<br>Piazza del Duomo, 22 &#151; Galleria Pattari 2<br>Milano 20122<br>Italy<br>" +
			"<p><strong>Invesco Asset Management S.A. - Branch Office</strong><br>Phone +39 02 88074 1 <br>Fax +39 02 88074 391<br>Website: <a href='http://www.invesco.it' target='_new'>http://www.invesco.it</a><!--<br>Function: Marketing, client service and Investment Management--></p>" + 
			"</div>",
		"europe_munich" : "<h3>MUNICH</h3>" +
			"<div class='loc-city'>" + 
			"<br>Maffeistrasse 3<br>80333 Munich<br>Germany<br>" +
			"<p><strong>Invesco Real Estate GmbH</strong><br>Phone +49 89 2060 6000<br>Fax +49 89 2060 6010<br>Website: <a href='http://www.invescorealestate.de/ ' target='_new'>www.invescorealestate.de</a><!--<br>Function: Investment Management, marketing and client service for Real Estate--></p>" + 
			"</div>",
		"europe_paris" : "<h3>PARIS</h3>" +
			"<div class='loc-city'>" + 
			"<br>5th Floor<br>16-18, rue de Londres<br>75009 Paris<br>France<br>" +
			"<p><strong>Invesco Asset Management S.A.</strong><br>Phone +33 1 56 62 43 02/43 77/43 79<br>Fax +33 1 56 62 43 83<br>Website: <a href='http://www.invesco.fr ' target='_new'>http://www.invesco.fr</a><!--<br>Function: Investment Management, marketing and client service--></p>" +
			"<p><strong>Invesco Real Estate Limited - Paris Branch</strong><br>Phone +33 1 56 62 43 24<br>Fax +33 1 56 62 43 26<br>Website: <a href='http://www.invescorealestate.co.uk/' target='_new'>http://www.invescorealestate.co.uk</a><!--<br>Function: Transaction and Asset Management for Real Estate--></p>" + 
			"</div>",
		"europe_prague" : "<h3>PRAGUE</h3>" +
			"<div class='loc-city'>" + 
			"<br>Praha City Center<br>Klimenstska 46<br>11002 Prague 1<br>Czech Republic<br>" +
			"<p><strong>Invesco Real Estate sro</strong><br>Phone +420 227 202 420<br>Fax +420 227 202 430<br>Website: <a href='http://www.invescorealestate.com/ ' target='_new'>www.invescorealestate.com</a><!--<br>Function: Transaction and Asset Management for Real Estate--></p>" + 
			"</div>",
		"europe_vienna" : "<h3>VIENNA</h3>" +
			"<div class='loc-city'>" + 
			"<br>Rotenturmstrasse 16-18<br>A-1010 Vienna<br>Austria<br>" +
			"<p><strong>Invesco Asset Management &#214;sterreich GmbH</strong><br>Phone +43 1 316 2000<br>Fax +43 1 316 2020<br>Website: <a href='http://www.invesco.at' target='_new'>http://www.invesco.at</a><!--<br>Function: Marketing and client service--></p>" + 
			"</div>",
		"europe_zurich" : "<h3>ZURICH</h3>" +
			"<div class='loc-city'>" + 
			"<br>Stockerstrasse 14<br>8002 Zurich<br>Switzerland<br>" +
			"<p><strong>Invesco Asset Management (Switzerland) Ltd</strong><br>Phone +41 (0)44 287 9000<br>Fax +41 (0)44 287 9010<br>Website: <a href='http://www.invesco.ch' target='_new'>http://www.invesco.ch</a><br>Email: <a href=mailto:info@zur.invesco.com>info@zur.invesco.com</a><!--<br>Function: Sales, Marketing, Client Service--></p>" + 
			"</div>",
		"middleeast_dubai" : "<h3>DUBAI</h3>" +
			"<div class='loc-city'>" + 
			"<br>Building 5, Level 6<br>The Gate Precinct <br>P.O. Box 506599<br> Dubai U.A.E<br>" +
   			"<p><strong>Invesco Asset Management Limited (Branch Office)</strong><br>Phone +971 4 425 0950<br>Fax +971 (0)4 425 0959<br>Website: <a href='http://www.invesco.ae/' target='_new'>www.invesco.ae</a></p>" + 
			"</div>",
		"uk_bracknell" : "<h3>BRACKNELL</h3>" +
			"<div class='loc-city'>" + 
			"<p><strong>Invesco Pensions Limited</strong><br>Invesco Perpetual Life Limited<br>First Floor<br>The Columbia Centre<br>Station Road<br>United Kingdom<br>Bracknell, Berkshire RG12 1LP</p>" +
			"<p>Phone +44 1344 46 4400<br>Fax +44 1344 46 4402<br>Website: <a href='http://pensions.invescoperpetual.co.uk' target='_new'>http://pensions.invescoperpetual.co.uk</a></p>" + 
			"</div>",
		"uk_dublin" : "<h3>DUBLIN</h3>" +
			"<div class='loc-city'>" + 
			"<br>1st Floor<br>George's Quay House<br>Townsend Street<br>Dublin 2<br>Ireland<br>" +
			"<p><strong>Invesco Global Asset Management Limited</strong><br>Phone +353 1 439 8000<br>Fax +353 1 439 8400<br>Website: <a href='http://www.invescointernational.co.uk' target='_new'>http://www.invescointernational.co.uk</a><!--<br>Function: Client services (unit trusts and offshore mutual funds)--></p>" + 
			"</div>",
		"uk_henley" : "<h3>HENLEY-ON-THAMES</h3>" +
			"<div class='loc-city'>" + 
			"<br>Perpetual Park<br>Perpetual Park Drive<br>Henley-on-Thames<br>Oxfordshire RG9 1HH<br>United Kingdom<br>" +
			"<p><strong>Invesco Perpetual</strong><br>Phone  +44 (0) 1491 417 000<br>Fax +44 (0) 1491 416 000<br>Website: <a href='http://www.invescoperpetual.co.uk' target='_new'>http://www.invescoperpetual.co.uk</a><!--<br>Function: Investment management, marketing and client service--></p>" + 
			"</div>",
		"uk_jersey" : "<h3>JERSEY (ST. HELIER)</h3>" +
			"<div class='loc-city'>" + 
			"<br>P.O. Box 1588<br>Orviss House,<br>17A Queen Street,<br>St. Helier, Jersey JE4 2PH<br>Channel Islands <br>" +
			"<p><strong>Invesco International Limited</strong><br>Phone +44 (0) 1534 607 600<br>Fax +44 (0) 1534 510 510<br>Website: <a href='http://www.invescointernational.co.uk' target='_new'>http://www.invescointernational.co.uk</a><!--<br>Function: Sales and Offshore Broker Services--></p>" + 
			"</div>",
		"uk_london" : "<h3>LONDON, FINSBURY SQUARE</h3>" +
			"<div class='loc-city'>" + 
			"<strong>Invesco Administration Services Limited</strong><br><strong>Invesco Asset Management Limited</strong><br><br>" + 
			"<br>30 Finsbury Square<br>London EC2A 1AG<br>United Kingdom<br>Telephone: +44 (0) 20 7065 4000<br>Fax: +44 (0) 20 7638 0752<br>Website: <a target=new href='http://www.invesco.co.uk'>http://www.invesco.co.uk</a><br>" +
			"<p><strong>Invesco Fixed Income</strong><br>Phone +44 (0) 20 7065 3003<br>Fax + 44 (0) 20 7065 3004<br>Website: <a href='http://www.invescoglobalcash.com' target='_new'>http://www.invescoglobalcash.com</a></p>" +
			"</div>",
		"uk_portmansquare" : "<h3>LONDON, PORTMAN SQUARE</h3>" +
			"<div class='loc-city'>" + 
			"<br>Portman Square, United Kingdom<br>" + 
			"<strong>Real Estate and Institutional Sales</strong><br>Phone +44 (0) 20 7543 3501<br>Fax +44 (0) 20 7543 3588<br>Website: <a target=new href='http://www.invescorealestate.co.uk'>http://www.invescorealestate.co.uk</a></p>" +
			"</div>"
	};
	
	if (y == "showall") {
		var prevLoc = "";
		var geoTitle = "";
		for (i in detailsArray) { // looping through all records in detailsArray seen above

			var geoLoc = i.split("_"); // separating geographic region from city (i.e. amer_houston   geoLoc[0]="amer"   geoLoc[1]="houston")
			
			if (geoLoc[0] != prevLoc) { // checking to see if new geographic region
				// set title based on geographic region
				if (geoLoc[0] == "amer") { geoTitle = "<h2>Americas</h2>"; }
				if (geoLoc[0] == "asiapac") { geoTitle = "<h2>Asia-Pacific</h2>"; }
				if (geoLoc[0] == "europe") { geoTitle = "<h2>Continental Europe</h2>"; }
				if (geoLoc[0] == "middleeast") { geoTitle = "<h2>Middle East</h2>"; }
				if (geoLoc[0] == "uk") { geoTitle = "<h2>UK & Ireland</h2>"; }
				document.write(geoTitle); // displaying title of new geographic region
			}
			
			document.write(detailsArray[i]); // writing each city's data
			prevLoc = geoLoc[0]; // setting region for next turn through loop
   
		}
	
	} else if (y == "amer" || y == "asiapac" || y == "europe" || y == "middleeast" || y == "uk") {
		var prevLoc = "";
		var geoTitle = "";
		var myOutput = "";
		for (i in detailsArray) { // looping through all records in detailsArray seen above

			var geoLoc = i.split("_"); // separating geographic region from city (i.e. amer_houston   geoLoc[0]="amer"   geoLoc[1]="houston")

			if (geoLoc[0] == y) {
			
				
			
/*				if (geoLoc[0] != prevLoc) { // checking to see if new geographic region
					// set title based on geographic region
					if (geoLoc[0] == "amer") { geoTitle = "<h2>Americas</h2>"; }
					if (geoLoc[0] == "asiapac") { geoTitle = "<h2>Asia-Pacific</h2>"; }
					if (geoLoc[0] == "europe") { geoTitle = "<h2>Continental Europe</h2>"; }
					if (geoLoc[0] == "middleeast") { geoTitle = "<h2>Middle East</h2>"; }
					if (geoLoc[0] == "uk") { geoTitle = "<h2>UK & Ireland</h2>"; }
					myOutput = myOutput + geoTitle; // displaying title of new geographic region
				}
*/			
			
			myOutput = myOutput + detailsArray[i]; // writing each city's data
			prevLoc = geoLoc[0]; // setting region for next turn through loop
		   }
		}
	
		document.getElementById('locdet').innerHTML = myOutput;
			
	} else if (y.indexOf("amer") >= 0 || y.indexOf("asiapac") >= 0 || y.indexOf("europe") >= 0 || y.indexOf("middleeast") >= 0 || y.indexOf("uk") >= 0) {
	
			document.write(detailsArray[y]);
		
	
	
	
	} else {
		
		document.getElementById(y).style.fontWeight='bold';
		var liName = eval("'li_'+y");
		document.getElementById(liName).style.backgroundImage = 'url(../site/global/images/loclist_bg.gif)';
		
		document.getElementById('locdet').innerHTML = detailsArray[y];
		//location.href="#toplist";
			
	}
	
}
	
function loadPics(y) {

	detailsArray = {
		"amer_atlanta" : "<hr width=\"100%\" size=\"1\" />" + 
			"<table height=\"400\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr><td height=\"400\" width=\"100\" valign=\"top\">" + 
			"<table cellspacing=\"0\" cellpadding=\"4\" border=\"0\" align=\"left\" width=\"100%\">" + 
			"<tr valign=\"top\"><td width=\"90\" valign=\"top\"><img border=\"0\" width=\"90\" id=\"img0\" name=\"img0\" src=\"/site/global/images/offices/Atlanta_ImgMain_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Atlanta_ImgMain.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td width=\"90\" valign=\"top\"><img border=\"0\" width=\"90\" id=\"img1\" name=\"img1\" src=\"/site/global/images/offices/Atlanta_Img1_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Atlanta_Img1.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td width=\"90\" valign=\"top\"><img border=\"0\" width=\"90\" id=\"img2\" name=\"img2\" src=\"/site/global/images/offices/Atlanta_Img2_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Atlanta_Img2.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td width=\"90\" valign=\"top\"><img border=\"0\" width=\"90\" id=\"img3\" name=\"img3\" src=\"/site/global/images/offices/Atlanta_Img3_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Atlanta_Img3.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td width=\"90\" valign=\"top\"><img border=\"0\" width=\"90\" id=\"img4\" name=\"img4\" src=\"/site/global/images/offices/Atlanta_Img4_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Atlanta_Img4.jpg'\"/></td></tr>" + 
			"</table>" + 
			"</td><td height=\"400\" align=\"left\" valign=\"top\" style=\"padding-top: 5px;\"><img height=\"400\" border=\"0\" id=\"rolloverIMG\" name=\"rolloverIMG\" src=\"/site/global/images/offices/Atlanta_Img2.jpg\" /></td></tr></table>", 
		"amer_austin" : "<hr width=\"100%\" size=\"1\" />" + 
			"<table height=\"400\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr><td height=\"400\" width=\"100\" valign=\"top\">" + 
			"<table cellspacing=\"0\" cellpadding=\"4\" border=\"0\" align=\"left\" width=\"100%\">" + 
			"<tr valign=\"top\"><td align=\"left\" width=\"90\" valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img0\" name=\"img0\" src=\"/site/global/images/offices/Austin_ImgMain_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Austin_ImgMain.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img1\" name=\"img1\" src=\"/site/global/images/offices/Austin_Img1_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Austin_Img1.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img2\" name=\"img2\" src=\"/site/global/images/offices/Austin_Img2_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Austin_Img2.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img3\" name=\"img3\" src=\"/site/global/images/offices/Austin_Img3_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Austin_Img3.jpg'\"/></td></tr>" + 
			"</table>" + 
			"</td><td height=\"400\" align=\"left\" valign=\"top\" style=\"padding-top: 5px;\"><img height=\"400\" border=\"0\" id=\"rolloverIMG\" name=\"rolloverIMG\" src=\"/site/global/images/offices/Austin_ImgMain.jpg\"/></td></tr></table>",
		"amer_baltimore" : "<hr width=\"100%\" size=\"1\" />" + 
			"<table height=\"400\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr><td height=\"400\" width=\"100\" valign=\"top\">" + 
			"<table cellspacing=\"0\" cellpadding=\"4\" border=\"0\" align=\"left\" width=\"100%\">" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img0\" name=\"img0\" src=\"/site/global/images/offices/Baltimore_ImgMain_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Baltimore_ImgMain.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img1\" name=\"img1\" src=\"/site/global/images/offices/Baltimore_Img1_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Baltimore_Img1.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img2\" name=\"img2\" src=\"/site/global/images/offices/Baltimore_Img2_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Baltimore_Img2.jpg'\"/></td></tr>" + 
			"</table>" + 
			"</td><td height=\"400\" align=\"left\" valign=\"top\" style=\"padding-top: 5px;\"><img height=\"400\" border=\"0\" id=\"rolloverIMG\" name=\"rolloverIMG\" src=\"/site/global/images/offices/Baltimore_ImgMain.jpg\"/></td></tr></table>",  
		"amer_boston" : "<hr width=\"100%\" size=\"1\" />" + 
			"<table height=\"400\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr><td height=\"400\" width=\"100\" valign=\"top\">" + 
			"<table cellspacing=\"0\" cellpadding=\"4\" border=\"0\" align=\"left\" width=\"100%\">" + 
			"<tr valign=\"top\"><td align=\"left\" width=\"90\" valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img0\" name=\"img0\" src=\"/site/global/images/offices/Boston_Invesco_ImgMain_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Boston_Invesco_ImgMain.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img1\" name=\"img1\" src=\"/site/global/images/offices/Boston_Invesco_Img1_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Boston_Invesco_Img1.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img2\" name=\"img2\" src=\"/site/global/images/offices/Boston_Invesco_Img2_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Boston_Invesco_Img2.jpg'\"/></td></tr>" + 
			"</table>" + 
			"</td><td height=\"400\" align=\"left\" valign=\"top\" style=\"padding-top: 5px;\"><img height=\"400\" border=\"0\" id=\"rolloverIMG1\" name=\"rolloverIMG1\" src=\"/site/global/images/offices/Boston_Invesco_ImgMain.jpg\"/></td></tr></table>" + 
			"<table height=\"400\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr><td height=\"400\" width=\"100\" valign=\"top\">" + 
			"<table cellspacing=\"0\" cellpadding=\"4\" border=\"0\" align=\"left\" width=\"100%\">" + 
			"<tr valign=\"top\"><td align=\"left\" width=\"90\" valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img4\" name=\"img4\" src=\"/site/global/images/offices/Boston_AtlanticTrust_ImgMain_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG2.src='/site/global/images/offices/Boston_AtlanticTrust_ImgMain.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img5\" name=\"img5\" src=\"/site/global/images/offices/Boston_AtlanticTrust_Img1_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG2.src='/site/global/images/offices/Boston_AtlanticTrust_Img1.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img6\" name=\"img6\" src=\"/site/global/images/offices/Boston_AtlanticTrust_Img2_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG2.src='/site/global/images/offices/Boston_AtlanticTrust_Img2.jpg'\"/></td></tr>" + 
			"<tr><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img7\" name=\"img7\" src=\"/site/global/images/offices/Boston_AtlanticTrust_Img3_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG2.src='/site/global/images/offices/Boston_AtlanticTrust_Img3.jpg'\"/></td></tr>" + 
			"</table>" + 
			"</td><td height=\"400\" align=\"left\" valign=\"top\" style=\"padding-top: 5px;\"><img height=\"400\" border=\"0\" id=\"rolloverIMG2\" name=\"rolloverIMG2\" src=\"/site/global/images/offices/Boston_AtlanticTrust_ImgMain.jpg\"/></td></tr></table>",  
		"amer_calgary" : "<hr width=\"100%\" size=\"1\" />" + 
			"<table height=\"400\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr><td height=\"400\" width=\"100\" valign=\"top\">" + 
			"<table cellspacing=\"0\" cellpadding=\"4\" border=\"0\" align=\"left\" width=\"100%\">" + 
			"<tr valign=\"top\"><td align=\"left\" width=\"90\" valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img0\" name=\"img0\" src=\"/site/global/images/offices/Calgary_ImgMain_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Calgary_ImgMain.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img1\" name=\"img1\" src=\"/site/global/images/offices/Calgary_Img1_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Calgary_Img1.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img2\" name=\"img2\" src=\"/site/global/images/offices/Calgary_Img2_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Calgary_Img2.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img3\" name=\"img3\" src=\"/site/global/images/offices/Calgary_Img3_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Calgary_Img3.jpg'\"/></td></tr>" + 
			"</table>" + 
			"</td><td height=\"400\" align=\"left\" valign=\"top\" style=\"padding-top: 5px;\"><img height=\"400\" border=\"0\" id=\"rolloverIMG\" name=\"rolloverIMG\" src=\"/site/global/images/offices/Calgary_ImgMain.jpg\"/></td></tr></table>",  
		"amer_charlottetown" : "<hr width=\"100%\" size=\"1\" />" + 
			"<table height=\"400\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr><td height=\"400\" width=\"100\" valign=\"top\">" + 
			"<table cellspacing=\"0\" cellpadding=\"4\" border=\"0\" align=\"left\" width=\"100%\">" + 
			"<tr valign=\"top\"><td align=\"left\" width=\"90\" valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img0\" name=\"img0\" src=\"/site/global/images/offices/Charlottetown_ImgMain_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Charlottetown_ImgMain.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img1\" name=\"img1\" src=\"/site/global/images/offices/Charlottetown_Img1_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Charlottetown_Img1.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img2\" name=\"img2\" src=\"/site/global/images/offices/Charlottetown_Img2_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Charlottetown_Img2.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img3\" name=\"img3\" src=\"/site/global/images/offices/Charlottetown_Img3_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Charlottetown_Img3.jpg'\"/></td></tr>" + 
			"</table>" + 
			"</td><td height=\"400\" align=\"left\" valign=\"top\" style=\"padding-top: 5px;\"><img height=\"400\" border=\"0\" id=\"rolloverIMG\" name=\"rolloverIMG\" src=\"/site/global/images/offices/Charlottetown_Img3.jpg\"/></td></tr></table>",  
		"amer_chicago" : "<hr width=\"100%\" size=\"1\" />" + 
			"<table height=\"400\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr><td height=\"400\" width=\"100\" valign=\"top\">" + 
			"<table cellspacing=\"0\" cellpadding=\"4\" border=\"0\" align=\"left\" width=\"100%\">" + 
			"<tr valign=\"top\"><td align=\"left\" width=\"90\" valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img0\" name=\"img0\" src=\"/site/global/images/offices/Chicago_ImgMain_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Chicago_ImgMain.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img1\" name=\"img1\" src=\"/site/global/images/offices/Chicago_Img1_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Chicago_Img1.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img2\" name=\"img2\" src=\"/site/global/images/offices/Chicago_Img2_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Chicago_Img2.jpg'\"/></td></tr>" + 
			"<tr><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img3\" name=\"img3\" src=\"/site/global/images/offices/Chicago_Img3_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Chicago_Img3.jpg'\"/></td></tr>" + 
			"</table>" + 
			"</td><td height=\"400\" align=\"left\" valign=\"top\" style=\"padding-top: 5px;\"><img height=\"400\" border=\"0\" id=\"rolloverIMG1\" name=\"rolloverIMG1\" src=\"/site/global/images/offices/Chicago_ImgMain.jpg\"/></td></tr></table>" + 
			"<table height=\"400\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr><td height=\"400\" width=\"100\" valign=\"top\">" + 
			"<table cellspacing=\"0\" cellpadding=\"4\" border=\"0\" align=\"left\" width=\"100%\">" + 
			"<tr valign=\"top\"><td align=\"left\" width=\"90\" valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img4\" name=\"img4\" src=\"/site/global/images/offices/Wheaton_ImgMain_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG2.src='/site/global/images/offices/Wheaton_ImgMain.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img5\" name=\"img5\" src=\"/site/global/images/offices/Wheaton_Img1_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG2.src='/site/global/images/offices/Wheaton_Img1.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img6\" name=\"img6\" src=\"/site/global/images/offices/Wheaton_Img2_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG2.src='/site/global/images/offices/Wheaton_Img2.jpg'\"/></td></tr>" + 
			"<tr><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img7\" name=\"img7\" src=\"/site/global/images/offices/Wheaton_Img3_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG2.src='/site/global/images/offices/Wheaton_Img3.jpg'\"/></td></tr>" + 
			"</table>" + 
			"</td><td height=\"400\" align=\"left\" valign=\"top\" style=\"padding-top: 5px;\"><img height=\"400\" border=\"0\" id=\"rolloverIMG2\" name=\"rolloverIMG2\" src=\"/site/global/images/offices/Wheaton_ImgMain.jpg\"/></td></tr></table>", 			
		"amer_dallas" : "<hr width=\"100%\" size=\"1\" />" + 
			"<table height=\"400\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr><td height=\"400\" width=\"100\" valign=\"top\">" + 
			"<table cellspacing=\"0\" cellpadding=\"4\" border=\"0\" align=\"left\" width=\"100%\">" + 
			"<tr valign=\"top\"><td align=\"left\" width=\"90\" valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img0\" name=\"img0\" src=\"/site/global/images/offices/Dallas_ImgMain_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Dallas_ImgMain.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img1\" name=\"img1\" src=\"/site/global/images/offices/Dallas_Img1_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Dallas_Img1.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img2\" name=\"img2\" src=\"/site/global/images/offices/Dallas_Img2_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Dallas_Img2.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img3\" name=\"img3\" src=\"/site/global/images/offices/Dallas_Img3_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Dallas_Img3.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img3\" name=\"img3\" src=\"/site/global/images/offices/Dallas_Img4_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Dallas_Img4.jpg'\"/></td></tr>" + 
			"</table>" + 
			"</td><td height=\"400\" align=\"left\" valign=\"top\" style=\"padding-top: 5px;\"><img height=\"400\" border=\"0\" id=\"rolloverIMG\" name=\"rolloverIMG\" src=\"/site/global/images/offices/Dallas_ImgMain.jpg\"/></td></tr></table>",  
		"amer_denver" : "<hr width=\"100%\" size=\"1\" />" + 
			"<table height=\"400\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr><td height=\"400\" width=\"100\" valign=\"top\">" + 
			"<table cellspacing=\"0\" cellpadding=\"4\" border=\"0\" align=\"left\" width=\"100%\">" + 
			"<tr valign=\"top\"><td align=\"left\" width=\"90\" valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img0\" name=\"img0\" src=\"/site/global/images/offices/Denver_ImgMain_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Denver_ImgMain.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img1\" name=\"img1\" src=\"/site/global/images/offices/Denver_Img1_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Denver_Img1.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img2\" name=\"img2\" src=\"/site/global/images/offices/Denver_Img2_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Denver_Img2.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img3\" name=\"img3\" src=\"/site/global/images/offices/Denver_Img3_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Denver_Img3.jpg'\"/></td></tr>" + 
			"</table>" + 
			"</td><td height=\"400\" align=\"left\" valign=\"top\" style=\"padding-top: 5px;\"><img height=\"400\" border=\"0\" id=\"rolloverIMG\" name=\"rolloverIMG\" src=\"/site/global/images/offices/Denver_ImgMain.jpg\"/></td></tr></table>",  
		"amer_houston" : "<hr width=\"100%\" size=\"1\" />" + 
			"<table height=\"400\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr><td height=\"400\" width=\"100\" valign=\"top\">" + 
			"<table cellspacing=\"0\" cellpadding=\"4\" border=\"0\" align=\"left\" width=\"100%\">" + 
			"<tr valign=\"top\"><td align=\"left\" width=\"90\" valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img0\" name=\"img0\" src=\"/site/global/images/offices/Houston_ImgMain_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Houston_ImgMain.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img1\" name=\"img1\" src=\"/site/global/images/offices/Houston_Img1_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Houston_Img1.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img2\" name=\"img2\" src=\"/site/global/images/offices/Houston_Img2_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Houston_Img2.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img3\" name=\"img3\" src=\"/site/global/images/offices/Houston_Img3_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Houston_Img3.jpg'\"/></td></tr>" + 
			"</table>" + 
			"</td><td height=\"400\" align=\"left\" valign=\"top\" style=\"padding-top: 5px;\"><img height=\"400\" border=\"0\" id=\"rolloverIMG\" name=\"rolloverIMG\" src=\"/site/global/images/offices/Houston_ImgMain.jpg\"/></td></tr></table>",  
		"amer_irvine" : "",
		"amer_louisville" : "<hr width=\"100%\" size=\"1\" />" + 
			"<table height=\"400\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr><td height=\"400\" width=\"100\" valign=\"top\">" + 
			"<table cellspacing=\"0\" cellpadding=\"4\" border=\"0\" align=\"left\" width=\"100%\">" + 
			"<tr valign=\"top\"><td align=\"left\" width=\"90\" valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img0\" name=\"img0\" src=\"/site/global/images/offices/Louisville_ImgMain_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Louisville_ImgMain.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img1\" name=\"img1\" src=\"/site/global/images/offices/Louisville_Img1_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Louisville_Img1.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img2\" name=\"img2\" src=\"/site/global/images/offices/Louisville_Img2_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Louisville_Img2.jpg'\"/></td></tr>" + 
			"<tr><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img3\" name=\"img3\" src=\"/site/global/images/offices/Louisville_Img3_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Louisville_Img3.jpg'\"/></td></tr>" + 
			"</table>" + 
			"</td><td height=\"400\" align=\"left\" valign=\"top\" style=\"padding-top: 5px;\"><img height=\"400\" border=\"0\" id=\"rolloverIMG1\" name=\"rolloverIMG1\" src=\"/site/global/images/offices/Louisville_ImgMain.jpg\"/></td></tr></table>",  
		"amer_montreal" : "<hr width=\"100%\" size=\"1\" />" + 
			"<table height=\"400\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr><td height=\"400\" width=\"100\" valign=\"top\">" + 
			"<table cellspacing=\"0\" cellpadding=\"4\" border=\"0\" align=\"left\" width=\"100%\">" + 
			"<tr valign=\"top\"><td align=\"left\" width=\"90\" valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img0\" name=\"img0\" src=\"/site/global/images/offices/Montreal_ImgMain_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Montreal_ImgMain.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img1\" name=\"img1\" src=\"/site/global/images/offices/Montreal_Img1_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Montreal_Img1.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img2\" name=\"img2\" src=\"/site/global/images/offices/Montreal_Img2_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Montreal_Img2.jpg'\"/></td></tr>" + 
			"</table>" + 
			"</td><td height=\"400\" align=\"left\" valign=\"top\" style=\"padding-top: 5px;\"><img height=\"400\" border=\"0\" id=\"rolloverIMG1\" name=\"rolloverIMG1\" src=\"/site/global/images/offices/Montreal_ImgMain.jpg\"/></td></tr></table>",  
		"amer_newyork" : "<hr width=\"100%\" size=\"1\" />" +  
			"<table height=\"400\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr><td height=\"400\" width=\"100\" valign=\"top\">" + 
			"<table cellspacing=\"0\" cellpadding=\"4\" border=\"0\" align=\"left\" width=\"100%\">" + 
			"<tr valign=\"top\"><td align=\"left\" width=\"90\" valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img4\" name=\"img4\" src=\"/site/global/images/offices/NYInvesco_ImgMain_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG2.src='/site/global/images/offices/NYInvesco_ImgMain.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img5\" name=\"img5\" src=\"/site/global/images/offices/NYInvesco_Img1_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG2.src='/site/global/images/offices/NYInvesco_Img1.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img6\" name=\"img6\" src=\"/site/global/images/offices/NYInvesco_Img2_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG2.src='/site/global/images/offices/NYInvesco_Img2.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img7\" name=\"img7\" src=\"/site/global/images/offices/NYInvesco_Img3_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG2.src='/site/global/images/offices/NYInvesco_Img3.jpg'\"/></td></tr>" + 
			"</table>" + 
			"</td><td height=\"400\" align=\"left\" valign=\"top\" style=\"padding-top: 5px;\"><img height=\"400\" border=\"0\" id=\"rolloverIMG2\" name=\"rolloverIMG2\" src=\"/site/global/images/offices/NYInvesco_ImgMain.jpg\"/></td></tr></table>",  
		"amer_newport" : "", 
		"amer_oakbrook" : "", 
		"amer_sanfrancisco" : "", 
		"amer_sanjuan" : "",  
		"amer_toronto" : "<hr width=\"100%\" size=\"1\" />" + 
			"<table height=\"400\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr><td height=\"400\" width=\"100\" valign=\"top\">" + 
			"<table cellspacing=\"0\" cellpadding=\"4\" border=\"0\" align=\"left\" width=\"100%\">" + 
			"<tr valign=\"top\"><td align=\"left\" width=\"90\" valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img0\" name=\"img0\" src=\"/site/global/images/offices/TorontoYonge_ImgMain_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/TorontoYonge_ImgMain.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img1\" name=\"img1\" src=\"/site/global/images/offices/TorontoYonge_Img1_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/TorontoYonge_Img1.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img2\" name=\"img2\" src=\"/site/global/images/offices/TorontoYonge_Img2_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/TorontoYonge_Img2.jpg'\"/></td></tr>" + 
			"<tr><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img3\" name=\"img3\" src=\"/site/global/images/offices/TorontoYonge_Img3_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/TorontoYonge_Img3.jpg'\"/></td></tr>" + 
			"</table>" + 
			"</td><td height=\"400\" align=\"left\" valign=\"top\" style=\"padding-top: 5px;\"><img height=\"400\" border=\"0\" id=\"rolloverIMG1\" name=\"rolloverIMG1\" src=\"/site/global/images/offices/TorontoYonge_ImgMain.jpg\"/></td></tr></table>" + 
			"<table height=\"400\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr><td height=\"400\" width=\"100\" valign=\"top\">" + 
			"<table cellspacing=\"0\" cellpadding=\"4\" border=\"0\" align=\"left\" width=\"100%\">" + 
			"<tr valign=\"top\"><td align=\"left\" width=\"90\" valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img4\" name=\"img4\" src=\"/site/global/images/offices/TorontoBloor_ImgMain_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG2.src='/site/global/images/offices/TorontoBloor_ImgMain.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img5\" name=\"img5\" src=\"/site/global/images/offices/TorontoBloor_Img1_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG2.src='/site/global/images/offices/TorontoBloor_Img1.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img6\" name=\"img6\" src=\"/site/global/images/offices/TorontoBloor_Img2_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG2.src='/site/global/images/offices/TorontoBloor_Img2.jpg'\"/></td></tr>" + 
			"</table>" + 
			"</td><td height=\"400\" align=\"left\" valign=\"top\" style=\"padding-top: 5px;\"><img height=\"400\" border=\"0\" id=\"rolloverIMG2\" name=\"rolloverIMG2\" src=\"/site/global/images/offices/TorontoBloor_ImgMain.jpg\"/></td></tr></table>",
		"amer_vancouver" : "<hr width=\"100%\" size=\"1\" />" + 
			"<table height=\"400\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr><td height=\"400\" width=\"100\" valign=\"top\">" +
			"<table cellspacing=\"0\" cellpadding=\"4\" border=\"0\" align=\"left\" width=\"100%\">" + 
			"<tr valign=\"top\"><td align=\"left\" width=\"90\" valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img0\" name=\"img0\" src=\"/site/global/images/offices/Vancouver_ImgMain_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Vancouver_ImgMain.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img1\" name=\"img1\" src=\"/site/global/images/offices/Vancouver_Img1_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Vancouver_Img1.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img2\" name=\"img2\" src=\"/site/global/images/offices/Vancouver_Img2_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Vancouver_Img2.jpg'\"/></td></tr>" + 
			"</table>" + 
			"</td><td height=\"400\" align=\"left\" valign=\"top\" style=\"padding-top: 5px;\"><img height=\"400\" border=\"0\" id=\"rolloverIMG1\" name=\"rolloverIMG1\" src=\"/site/global/images/offices/Vancouver_ImgMain.jpg\"/></td></tr></table>",  
		"amer_washington" : "",
		"amer_westconshohocken" : "",
		"amer_wheaton" : "<hr width=\"100%\" size=\"1\" />" + 
			"<table height=\"400\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr><td height=\"400\" width=\"100\" valign=\"top\">" + 
			"<table cellspacing=\"0\" cellpadding=\"4\" border=\"0\" align=\"left\" width=\"100%\">" + 
			"<tr valign=\"top\"><td align=\"left\" width=\"90\" valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img0\" name=\"img0\" src=\"/site/global/images/offices/Wheaton_ImgMain_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Wheaton_ImgMain.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img1\" name=\"img1\" src=\"/site/global/images/offices/Wheaton_Img1_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Wheaton_Img1.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img2\" name=\"img2\" src=\"/site/global/images/offices/Wheaton_Img2_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Wheaton_Img2.jpg'\"/></td></tr>" + 
			"<tr><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img3\" name=\"img3\" src=\"/site/global/images/offices/Wheaton_Img3_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Wheaton_Img3.jpg'\"/></td></tr>" + 
			"</table>" + 
			"</td><td height=\"400\" align=\"left\" valign=\"top\" style=\"padding-top: 5px;\"><img height=\"400\" border=\"0\" id=\"rolloverIMG1\" name=\"rolloverIMG1\" src=\"/site/global/images/offices/Wheaton_ImgMain.jpg\"/></td></tr></table>",  
		"asiapac_beijing" : "<hr width=\"100%\" size=\"1\" />" + 
			"<table height=\"400\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr><td height=\"400\" width=\"100\" valign=\"top\">" + 
			"<table cellspacing=\"0\" cellpadding=\"4\" border=\"0\" align=\"left\" width=\"100%\">" + 
			"<tr valign=\"top\"><td align=\"left\" width=\"90\" valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img1\" name=\"img1\" src=\"/site/global/images/offices/Beijing_ImgMain_thumb_1.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Beijing_ImgMain_1.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td align=\"left\" width=\"90\" valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img0\" name=\"img0\" src=\"/site/global/images/offices/Beijing_ImgMain_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Beijing_ImgMain.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img2\" name=\"img2\" src=\"/site/global/images/offices/Beijing_Img1_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Beijing_Img1.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img3\" name=\"img3\" src=\"/site/global/images/offices/Beijing_Img2_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Beijing_Img2.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img4\" name=\"img4\" src=\"/site/global/images/offices/Beijing_Img3_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Beijing_Img3.jpg'\"/></td></tr>" + 
			"</table>" + 
			"</td><td height=\"400\" align=\"left\" valign=\"top\" style=\"padding-top: 5px;\"><img height=\"400\" border=\"0\" id=\"rolloverIMG\" name=\"rolloverIMG\" src=\"/site/global/images/offices/Beijing_ImgMain_1.jpg\"/></td></tr></table>",
		"asiapac_hongkong" : "<hr width=\"100%\" size=\"1\" />" + 
			"<table height=\"400\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr><td height=\"400\" width=\"100\" valign=\"top\">" + 
			"<table cellspacing=\"0\" cellpadding=\"4\" border=\"0\" align=\"left\" width=\"100%\">" + 
			"<tr valign=\"top\"><td align=\"left\" width=\"90\" valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img0\" name=\"img0\" src=\"/site/global/images/offices/HongKong_ImgMain_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/HongKong_ImgMain.jpg'\"/></td></tr>" + 
			//"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img1\" name=\"img1\" src=\"/site/global/images/offices/HongKong_Img1_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/HongKong_Img1.jpg'\"/></td></tr>" + 
			//"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img2\" name=\"img2\" src=\"/site/global/images/offices/HongKong_Img2_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/HongKong_Img2.jpg'\"/></td></tr>" + 
			//"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img3\" name=\"img3\" src=\"/site/global/images/offices/HongKong_Img3_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/HongKong_Img3.jpg'\"/></td></tr>" + 
			"</table>" + 
			"</td><td height=\"400\" align=\"left\" valign=\"top\" style=\"padding-top: 5px;\"><img height=\"400\" border=\"0\" id=\"rolloverIMG\" name=\"rolloverIMG\" src=\"/site/global/images/offices/HongKong_ImgMain.jpg\"/></td></tr></table>",
		"asiapac_hyderabad" : "<hr width=\"100%\" size=\"1\" />" + 
			"<table height=\"400\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr><td height=\"400\" width=\"100\" valign=\"top\">" + 
			"<table cellspacing=\"0\" cellpadding=\"4\" border=\"0\" align=\"left\" width=\"100%\">" + 
			"<tr valign=\"top\"><td align=\"left\" width=\"90\" valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img0\" name=\"img0\" src=\"/site/global/images/offices/Hyderabad_ImgMain_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Hyderabad_ImgMain.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img1\" name=\"img1\" src=\"/site/global/images/offices/Hyderabad_Img1_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Hyderabad_Img1.jpg'\"/></td></tr>" + 
		//	"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img2\" name=\"img2\" src=\"/site/global/images/offices/Hyderabad_Img2_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Hyderabad_Img2.jpg'\"/></td></tr>" + 
			"</table>" + 
			"</td><td height=\"400\" align=\"left\" valign=\"top\" style=\"padding-top: 5px;\"><img height=\"400\" border=\"0\" id=\"rolloverIMG\" name=\"rolloverIMG\" src=\"/site/global/images/offices/Hyderabad_ImgMain.jpg\"/></td></tr></table>",
		"asiapac_melbourne" : "<hr width=\"100%\" size=\"1\" />" + 
			"<table height=\"400\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr><td height=\"400\" width=\"100\" valign=\"top\">" + 
			"<table cellspacing=\"0\" cellpadding=\"4\" border=\"0\" align=\"left\" width=\"100%\">" + 
			"<tr valign=\"top\"><td align=\"left\" width=\"90\" valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img0\" name=\"img0\" src=\"/site/global/images/offices/Melbourne_ImgMain_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Melbourne_ImgMain.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img1\" name=\"img1\" src=\"/site/global/images/offices/Melbourne_Img1_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Melbourne_Img1.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img2\" name=\"img2\" src=\"/site/global/images/offices/Melbourne_Img2_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Melbourne_Img2.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img3\" name=\"img3\" src=\"/site/global/images/offices/Melbourne_Img3_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Melbourne_Img3.jpg'\"/></td></tr>" + 
			"</table>" + 
			"</td><td height=\"400\" align=\"left\" valign=\"top\" style=\"padding-top: 5px;\"><img height=\"400\" border=\"0\" id=\"rolloverIMG\" name=\"rolloverIMG\" src=\"/site/global/images/offices/Melbourne_ImgMain.jpg\"/></td></tr></table>",
		"asiapac_mumbai" : "",//"<hr width=\"100%\" size=\"1\" />" + 
			//"<table height=\"400\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr><td height=\"400\" width=\"100\" valign=\"top\">" + 
			//"<table cellspacing=\"0\" cellpadding=\"4\" border=\"0\" align=\"left\" width=\"100%\">" + 
			//"<tr valign=\"top\"><td align=\"left\" width=\"90\" valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img0\" name=\"img0\" src=\"/site/global/images/offices/Shanghai_ImgMain_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Shanghai_ImgMain.jpg'\"/></td></tr>" + 
			//"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img1\" name=\"img1\" src=\"/site/global/images/offices/Shanghai_Img1_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Shanghai_Img1.jpg'\"/></td></tr>" + 
			//"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img2\" name=\"img2\" src=\"/site/global/images/offices/Shanghai_Img2_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Shanghai_Img2.jpg'\"/></td></tr>" + 
			//"</table>" + 
			//"</td><td height=\"400\" align=\"left\" valign=\"top\" style=\"padding-top: 5px;\"><img height=\"400\" border=\"0\" id=\"rolloverIMG1\" name=\"rolloverIMG1\" src=\"/site/global/images/offices/Shanghai_ImgMain.jpg\"/></td></tr></table>",
		"asiapac_seoul" : "<hr width=\"100%\" size=\"1\" />" + 
			"<table height=\"400\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr><td height=\"400\" width=\"100\" valign=\"top\">" + 
			"<table cellspacing=\"0\" cellpadding=\"4\" border=\"0\" align=\"left\" width=\"100%\">" + 
			"<tr valign=\"top\"><td align=\"left\" width=\"90\" valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img0\" name=\"img0\" src=\"/site/global/images/offices/Seoul_ImgMain_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Seoul_ImgMain.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img1\" name=\"img1\" src=\"/site/global/images/offices/Seoul_Img1_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Seoul_Img1.jpg'\"/></td></tr>" + 
			//"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img2\" name=\"img2\" src=\"/site/global/images/offices/Seoul_Img2_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Seoul_Img2.jpg'\"/></td></tr>" + 
			"</table>" + 
			"</td><td height=\"400\" align=\"left\" valign=\"top\" style=\"padding-top: 5px;\"><img height=\"400\" border=\"0\" id=\"rolloverIMG1\" name=\"rolloverIMG1\" src=\"/site/global/images/offices/Seoul_ImgMain.jpg\"/></td></tr></table>",
		"asiapac_shanghai" : "<hr width=\"100%\" size=\"1\" />" + 
			"<table height=\"400\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr><td height=\"400\" width=\"100\" valign=\"top\">" + 
			"<table cellspacing=\"0\" cellpadding=\"4\" border=\"0\" align=\"left\" width=\"100%\">" + 
			"<tr valign=\"top\"><td align=\"left\" width=\"90\" valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img0\" name=\"img0\" src=\"/site/global/images/offices/Shanghai_ImgMain_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Shanghai_ImgMain.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img1\" name=\"img1\" src=\"/site/global/images/offices/Shanghai_Img1_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Shanghai_Img1.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img2\" name=\"img2\" src=\"/site/global/images/offices/Shanghai_Img2_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Shanghai_Img2.jpg'\"/></td></tr>" + 
			"</table>" + 
			"</td><td height=\"400\" align=\"left\" valign=\"top\" style=\"padding-top: 5px;\"><img height=\"400\" border=\"0\" id=\"rolloverIMG1\" name=\"rolloverIMG1\" src=\"/site/global/images/offices/Shanghai_ImgMain.jpg\"/></td></tr></table>",
		"asiapac_shenzhencity" : "<hr width=\"100%\" size=\"1\" />" + 
			"<table height=\"400\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr><td height=\"400\" width=\"100\" valign=\"top\">" + 
			"<table cellspacing=\"0\" cellpadding=\"4\" border=\"0\" align=\"left\" width=\"100%\">" + 
			"<tr valign=\"top\"><td align=\"left\" width=\"90\" valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img0\" name=\"img0\" src=\"/site/global/images/offices/Shenzhen_ImgMain_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Shenzhen_ImgMain.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img1\" name=\"img1\" src=\"/site/global/images/offices/Shenzhen_Img1_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Shenzhen_Img1.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img2\" name=\"img2\" src=\"/site/global/images/offices/Shenzhen_Img2_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Shenzhen_Img2.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img3\" name=\"img3\" src=\"/site/global/images/offices/Shenzhen_Img3_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Shenzhen_Img3.jpg'\"/></td></tr>" + 
			"</table>" + 
			"</td><td height=\"400\" align=\"left\" valign=\"top\" style=\"padding-top: 5px;\"><img height=\"400\" border=\"0\" id=\"rolloverIMG1\" name=\"rolloverIMG1\" src=\"/site/global/images/offices/Shenzhen_ImgMain.jpg\"/></td></tr></table>",
		"asiapac_singapore" : "<hr width=\"100%\" size=\"1\" />" + 
			"<table height=\"400\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr><td height=\"400\" width=\"100\" valign=\"top\">" + 
			"<table cellspacing=\"0\" cellpadding=\"4\" border=\"0\" align=\"left\" width=\"100%\">" + 
			"<tr valign=\"top\"><td align=\"left\" width=\"90\" valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img0\" name=\"img0\" src=\"/site/global/images/offices/Singapore_ImgMain_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Singapore_ImgMain.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img1\" name=\"img1\" src=\"/site/global/images/offices/Singapore_Img1_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Singapore_Img1.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img2\" name=\"img2\" src=\"/site/global/images/offices/Singapore_Img2_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Singapore_Img2.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img2\" name=\"img2\" src=\"/site/global/images/offices/Singapore_Img3_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Singapore_Img3.jpg'\"/></td></tr>" + 
			"</table>" + 
			"</td><td height=\"400\" align=\"left\" valign=\"top\" style=\"padding-top: 5px;\"><img height=\"400\" border=\"0\" id=\"rolloverIMG1\" name=\"rolloverIMG1\" src=\"/site/global/images/offices/Singapore_ImgMain.jpg\"/></td></tr></table>",
		"asiapac_sydney" : "",//"<hr width=\"100%\" size=\"1\" />" + 
			//"<table height=\"400\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr><td height=\"400\" width=\"100\" valign=\"top\">" + 
			//"<table cellspacing=\"0\" cellpadding=\"4\" border=\"0\" align=\"left\" width=\"100%\">" + 
			//"<tr valign=\"top\"><td align=\"left\" width=\"90\" valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img0\" name=\"img0\" src=\"/site/global/images/offices/Sydney_ImgMain_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Sydney_ImgMain.jpg'\"/></td></tr>" + 
			//"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img1\" name=\"img1\" src=\"/site/global/images/offices/Sydney_Img1_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Sydney_Img1.jpg'\"/></td></tr>" + 
			//"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img2\" name=\"img2\" src=\"/site/global/images/offices/Sydney_Img2_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Sydney_Img2.jpg'\"/></td></tr>" + 
			//"</table>" + 
			//"</td><td height=\"400\" align=\"left\" valign=\"top\" style=\"padding-top: 5px;\"><img height=\"400\" border=\"0\" id=\"rolloverIMG1\" name=\"rolloverIMG1\" src=\"/site/global/images/offices/Sydney_ImgMain.jpg\"/></td></tr></table>",
		"asiapac_taipei" : "<hr width=\"100%\" size=\"1\" />" + 
			"<table height=\"400\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr><td height=\"400\" width=\"100\" valign=\"top\">" + 
			"<table cellspacing=\"0\" cellpadding=\"4\" border=\"0\" align=\"left\" width=\"100%\">" + 
			"<tr valign=\"top\"><td align=\"left\" width=\"90\" valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img0\" name=\"img0\" src=\"/site/global/images/offices/Taipei_ImgMain_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Taipei_ImgMain.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img1\" name=\"img1\" src=\"/site/global/images/offices/Taipei_Img1_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Taipei_Img1.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img2\" name=\"img2\" src=\"/site/global/images/offices/Taipei_Img2_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Taipei_Img2.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img3\" name=\"img3\" src=\"/site/global/images/offices/Taipei_Img3_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Taipei_Img3.jpg'\"/></td></tr>" + 
			"</table>" + 
			"</td><td height=\"400\" align=\"left\" valign=\"top\" style=\"padding-top: 5px;\"><img height=\"400\" border=\"0\" id=\"rolloverIMG1\" name=\"rolloverIMG1\" src=\"/site/global/images/offices/Taipei_ImgMain.jpg\"/></td></tr></table>",
		"asiapac_tokyo" : "<hr width=\"100%\" size=\"1\" />" + 
			"<table height=\"400\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr><td height=\"400\" width=\"100\" valign=\"top\">" + 
			"<table cellspacing=\"0\" cellpadding=\"4\" border=\"0\" align=\"left\" width=\"100%\">" + 
			"<tr valign=\"top\"><td align=\"left\" width=\"90\" valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img0\" name=\"img0\" src=\"/site/global/images/offices/Tokyo_ImgMain_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Tokyo_ImgMain.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img1\" name=\"img1\" src=\"/site/global/images/offices/Tokyo_Img1_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Tokyo_Img1.jpg'\"/></td></tr>" + 
			//"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img2\" name=\"img2\" src=\"/site/global/images/offices/Tokyo_Img2_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Tokyo_Img2.jpg'\"/></td></tr>" + 
			//"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img3\" name=\"img3\" src=\"/site/global/images/offices/Tokyo_Img3_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Tokyo_Img3.jpg'\"/></td></tr>" + 
			"</table>" + 
			"</td><td height=\"400\" align=\"left\" valign=\"top\" style=\"padding-top: 5px;\"><img height=\"400\" border=\"0\" id=\"rolloverIMG1\" name=\"rolloverIMG1\" src=\"/site/global/images/offices/Tokyo_ImgMain.jpg\"/></td></tr></table>",
		
		
		
		
		"europe_amsterdam" : "",//"<hr width=\"100%\" size=\"1\" />" + 
			//"<table height=\"400\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr><td height=\"400\" width=\"100\" valign=\"top\">" + 
			//"<table cellspacing=\"0\" cellpadding=\"4\" border=\"0\" align=\"left\" width=\"100%\">" + 
			//"<tr valign=\"top\"><td align=\"left\" width=\"90\" valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img0\" name=\"img0\" src=\"/site/global/images/offices/Amsterdam_ImgMain_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Amsterdam_ImgMain.jpg'\"/></td></tr>" + 
			//"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img1\" name=\"img1\" src=\"/site/global/images/offices/Amsterdam_Img1_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Amsterdam_Img1.jpg'\"/></td></tr>" + 
			//"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img2\" name=\"img2\" src=\"/site/global/images/offices/Amsterdam_Img2_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Amsterdam_Img2.jpg'\"/></td></tr>" + 
			//"<tr><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img3\" name=\"img3\" src=\"/site/global/images/offices/Amsterdam_Img3_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Amsterdam_Img3.jpg'\"/></td></tr>" + 
			//"</table>" + 
			//"</td><td height=\"400\" align=\"left\" valign=\"top\" style=\"padding-top: 5px;\"><img height=\"400\" border=\"0\" id=\"rolloverIMG1\" name=\"rolloverIMG1\" src=\"/site/global/images/offices/Amsterdam_ImgMain.jpg\"/></td></tr></table>",
		"europe_brussels" : "<hr width=\"100%\" size=\"1\" />" + 
			"<table height=\"400\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr><td height=\"400\" width=\"100\" valign=\"top\">" + 
			"<table cellspacing=\"0\" cellpadding=\"4\" border=\"0\" align=\"left\" width=\"100%\">" + 
			"<tr valign=\"top\"><td align=\"left\" width=\"90\" valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img0\" name=\"img0\" src=\"/site/global/images/offices/Brussels_ImgMain_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Brussels_ImgMain.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img1\" name=\"img1\" src=\"/site/global/images/offices/Brussels_Img1_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Brussels_Img1.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img2\" name=\"img2\" src=\"/site/global/images/offices/Brussels_Img2_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Brussels_Img2.jpg'\"/></td></tr>" + 
			"<tr><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img3\" name=\"img3\" src=\"/site/global/images/offices/Brussels_Img3_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Brussels_Img3.jpg'\"/></td></tr>" + 
			"</table>" + 
			"</td><td height=\"400\" align=\"left\" valign=\"top\" style=\"padding-top: 5px;\"><img height=\"400\" border=\"0\" id=\"rolloverIMG1\" name=\"rolloverIMG1\" src=\"/site/global/images/offices/Brussels_ImgMain.jpg\"/></td></tr></table>",
			
		"europe_frankfurt" : "<hr width=\"100%\" size=\"1\" />" + 
			"<table height=\"400\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr><td height=\"400\" width=\"100\" valign=\"top\">" + 
			"<table cellspacing=\"0\" cellpadding=\"4\" border=\"0\" align=\"left\" width=\"100%\">" + 
			//"<tr valign=\"top\"><td align=\"left\" width=\"90\" valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"imgm\" name=\"imgm\" src=\"/site/global/images/offices/Frankfurt_ImgMain_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Frankfurt_ImgMain.jpg'\"/></td></tr>" + 
			
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img1\" name=\"img1\" src=\"/site/global/images/offices/Frankfurt_ImgMain_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Frankfurt_ImgMain.jpg'\"/></td></tr>" +  
			
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img1\" name=\"img1\" src=\"/site/global/images/offices/Frankfurt_Img1_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Frankfurt_Img1.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img2\" name=\"img2\" src=\"/site/global/images/offices/Frankfurt_Img2_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Frankfurt_Img2.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img3\" name=\"img3\" src=\"/site/global/images/offices/Frankfurt_Img3_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Frankfurt_Img3.jpg'\"/></td></tr>" + 
			//"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img4\" name=\"img4\" src=\"/site/global/images/offices/Frankfurt_Img4_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Frankfurt_Img4.jpg'\"/></td></tr>" + 
			"</table>" + 
			"</td><td height=\"400\" align=\"left\" valign=\"top\" style=\"padding-top: 5px;\"><img height=\"400\" border=\"0\" id=\"rolloverIMG1\" name=\"rolloverIMG1\" src=\"/site/global/images/offices/Frankfurt_ImgMain.jpg\"/></td></tr></table>",
			
			//"<table height=\"400\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr><td height=\"400\" width=\"100\" valign=\"top\">" + 
			//"<table cellspacing=\"0\" cellpadding=\"4\" border=\"0\" align=\"left\" width=\"100%\">" + 
			//"<tr valign=\"top\"><td align=\"left\" width=\"90\" valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"imgm2\" name=\"imgm2\" src=\"/site/global/images/offices/Frankfurt_ImgMain2_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG2.src='/site/global/images/offices/Frankfurt_ImgMain2.jpg'\"/></td></tr>" + 
			//"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img5\" name=\"img5\" src=\"/site/global/images/offices/Frankfurt_Img5_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG2.src='/site/global/images/offices/Frankfurt_Img5.jpg'\"/></td></tr>" + 
			//"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img6\" name=\"img6\" src=\"/site/global/images/offices/Frankfurt_Img6_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG2.src='/site/global/images/offices/Frankfurt_Img6.jpg'\"/></td></tr>" + 
			//"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img7\" name=\"img7\" src=\"/site/global/images/offices/Frankfurt_Img7_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG2.src='/site/global/images/offices/Frankfurt_Img7.jpg'\"/></td></tr>" + 
			//"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img8\" name=\"img8\" src=\"/site/global/images/offices/Frankfurt_Img8_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG2.src='/site/global/images/offices/Frankfurt_Img8.jpg'\"/></td></tr>" + 
			//"</table>" + 
			//"</td><td height=\"400\" align=\"left\" valign=\"top\" style=\"padding-top: 5px;\"><img height=\"400\" border=\"0\" id=\"rolloverIMG2\" name=\"rolloverIMG2\" src=\"/site/global/images/offices/Frankfurt_ImgMain2.jpg\"/></td></tr></table>" + 			
			
			//"<table height=\"400\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr><td height=\"400\" width=\"100\" valign=\"top\">" + 
			//"<table cellspacing=\"0\" cellpadding=\"4\" border=\"0\" align=\"left\" width=\"100%\">" + 
			//"<tr valign=\"top\"><td align=\"left\" width=\"90\" valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"imgm3\" name=\"imgm3\" src=\"/site/global/images/offices/Frankfurt_ImgMain3_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG3.src='/site/global/images/offices/Frankfurt_ImgMain3.jpg'\"/></td></tr>" + 
			//"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img9\" name=\"img9\" src=\"/site/global/images/offices/Frankfurt_Img9_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG3.src='/site/global/images/offices/Frankfurt_Img9.jpg'\"/></td></tr>" + 
			//"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img10\" name=\"img10\" src=\"/site/global/images/offices/Frankfurt_Img10_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG3.src='/site/global/images/offices/Frankfurt_Img10.jpg'\"/></td></tr>" + 
			//"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img11\" name=\"img11\" src=\"/site/global/images/offices/Frankfurt_Img11_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG3.src='/site/global/images/offices/Frankfurt_Img11.jpg'\"/></td></tr>" + 
			//"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img12\" name=\"img12\" src=\"/site/global/images/offices/Frankfurt_Img12_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG3.src='/site/global/images/offices/Frankfurt_Img12.jpg'\"/></td></tr>" + 
			//"</table>" + 
			//"</td><td height=\"400\" align=\"left\" valign=\"top\" style=\"padding-top: 5px;\"><img height=\"400\" border=\"0\" id=\"rolloverIMG3\" name=\"rolloverIMG3\" src=\"/site/global/images/offices/Frankfurt_ImgMain3.jpg\"/></td></tr></table>",
			
			
			
			
		
		
		
		
		"europe_luxembourg" : "",
		
		
		"europe_madrid" : "<hr width=\"100%\" size=\"1\" />" + 
			"<table height=\"400\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr><td height=\"400\" width=\"100\" valign=\"top\">" + 
			"<table cellspacing=\"0\" cellpadding=\"4\" border=\"0\" align=\"left\" width=\"100%\">" + 
			"<tr valign=\"top\"><td align=\"left\" width=\"90\" valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img0\" name=\"img0\" src=\"/site/global/images/offices/Madrid_ImgMain_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Madrid_ImgMain.jpg'\"/></td></tr>" + 
			//"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img1\" name=\"img1\" src=\"/site/global/images/offices/Madrid_Img1_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Madrid_Img1.jpg'\"/></td></tr>" + 
			//"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img2\" name=\"img2\" src=\"/site/global/images/offices/Madrid_Img2_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Madrid_Img2.jpg'\"/></td></tr>" + 
			//"<tr><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img3\" name=\"img3\" src=\"/site/global/images/offices/Madrid_Img3_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Madrid_Img3.jpg'\"/></td></tr>" + 
			"</table>" + 
			"</td><td height=\"400\" align=\"left\" valign=\"top\" style=\"padding-top: 5px;\"><img height=\"400\" border=\"0\" id=\"rolloverIMG1\" name=\"rolloverIMG1\" src=\"/site/global/images/offices/Madrid_ImgMain.jpg\"/></td></tr></table>",
		"europe_milan" : "",//"<hr width=\"100%\" size=\"1\" />" + 
			//"<table height=\"400\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr><td height=\"400\" width=\"100\" valign=\"top\">" + 
			//"<table cellspacing=\"0\" cellpadding=\"4\" border=\"0\" align=\"left\" width=\"100%\">" + 
			//"<tr valign=\"top\"><td align=\"left\" width=\"90\" valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img0\" name=\"img0\" src=\"/site/global/images/offices/Milan_ImgMain_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Milan_ImgMain.jpg'\"/></td></tr>" + 
			//"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img1\" name=\"img1\" src=\"/site/global/images/offices/Madrid_Img1_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Milan_Img1.jpg'\"/></td></tr>" + 
			//"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img2\" name=\"img2\" src=\"/site/global/images/offices/Madrid_Img2_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Milan_Img2.jpg'\"/></td></tr>" + 
			//"<tr><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img3\" name=\"img3\" src=\"/site/global/images/offices/Milan_Img3_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Milan_Img3.jpg'\"/></td></tr>" + 
			//"</table>" + 
			//"</td><td height=\"400\" align=\"left\" valign=\"top\" style=\"padding-top: 5px;\"><img height=\"400\" border=\"0\" id=\"rolloverIMG1\" name=\"rolloverIMG1\" src=\"/site/global/images/offices/Milan_ImgMain.jpg\"/></td></tr></table>",
		"europe_munich" : "<hr width=\"100%\" size=\"1\" />" + 
			"<table height=\"400\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr><td height=\"400\" width=\"100\" valign=\"top\">" + 
			"<table cellspacing=\"0\" cellpadding=\"4\" border=\"0\" align=\"left\" width=\"100%\">" + 
			"<tr valign=\"top\"><td align=\"left\" width=\"90\" valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img0\" name=\"img0\" src=\"/site/global/images/offices/Munich_ImgMain_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Munich_ImgMain.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img1\" name=\"img1\" src=\"/site/global/images/offices/Munich_Img1_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Munich_Img1.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img2\" name=\"img2\" src=\"/site/global/images/offices/Munich_Img2_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Munich_Img2.jpg'\"/></td></tr>" + 
			"<tr><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img3\" name=\"img3\" src=\"/site/global/images/offices/Munich_Img3_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Munich_Img3.jpg'\"/></td></tr>" + 
			"</table>" + 
			"</td><td height=\"400\" align=\"left\" valign=\"top\" style=\"padding-top: 5px;\"><img height=\"400\" border=\"0\" id=\"rolloverIMG1\" name=\"rolloverIMG1\" src=\"/site/global/images/offices/Munich_ImgMain.jpg\"/></td></tr></table>",
		"europe_paris" : "<hr width=\"100%\" size=\"1\" />" + 
			"<table height=\"400\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr><td height=\"400\" width=\"100\" valign=\"top\">" + 
			"<table cellspacing=\"0\" cellpadding=\"4\" border=\"0\" align=\"left\" width=\"100%\">" + 
			"<tr valign=\"top\"><td align=\"left\" width=\"90\" valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img0\" name=\"img0\" src=\"/site/global/images/offices/Paris_ImgMain_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Paris_ImgMain.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img1\" name=\"img1\" src=\"/site/global/images/offices/Paris_Img1_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Paris_Img1.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img2\" name=\"img2\" src=\"/site/global/images/offices/Paris_Img2_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Paris_Img2.jpg'\"/></td></tr>" + 
			"</table>" + 
			"</td><td height=\"400\" align=\"left\" valign=\"top\" style=\"padding-top: 5px;\"><img height=\"400\" border=\"0\" id=\"rolloverIMG1\" name=\"rolloverIMG1\" src=\"/site/global/images/offices/Paris_ImgMain.jpg\"/></td></tr></table>",
		"europe_prague" : "<hr width=\"100%\" size=\"1\" />" + 
			"<table height=\"400\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr><td height=\"400\" width=\"100\" valign=\"top\">" + 
			"<table cellspacing=\"0\" cellpadding=\"4\" border=\"0\" align=\"left\" width=\"100%\">" + 
			"<tr valign=\"top\"><td align=\"left\" width=\"90\" valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img0\" name=\"img0\" src=\"/site/global/images/offices/Prague_ImgMain_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Prague_ImgMain.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img1\" name=\"img1\" src=\"/site/global/images/offices/Prague_Img1_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Prague_Img1.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img2\" name=\"img2\" src=\"/site/global/images/offices/Prague_Img2_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Prague_Img2.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img3\" name=\"img3\" src=\"/site/global/images/offices/Prague_Img3_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Prague_Img3.jpg'\"/></td></tr>" + 
			"</table>" + 
			"</td><td height=\"400\" align=\"left\" valign=\"top\" style=\"padding-top: 5px;\"><img height=\"400\" border=\"0\" id=\"rolloverIMG1\" name=\"rolloverIMG1\" src=\"/site/global/images/offices/Prague_ImgMain.jpg\"/></td></tr></table>",
		"europe_vienna" : "<hr width=\"100%\" size=\"1\" />" + 
			"<table height=\"400\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr><td height=\"400\" width=\"100\" valign=\"top\">" + 
			"<table cellspacing=\"0\" cellpadding=\"4\" border=\"0\" align=\"left\" width=\"100%\">" + 
			"<tr valign=\"top\"><td align=\"left\" width=\"90\" valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img0\" name=\"img0\" src=\"/site/global/images/offices/Vienna_ImgMain_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Vienna_ImgMain.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img1\" name=\"img1\" src=\"/site/global/images/offices/Vienna_Img1_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Vienna_Img1.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img2\" name=\"img2\" src=\"/site/global/images/offices/Vienna_Img2_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Vienna_Img2.jpg'\"/></td></tr>" + 
			"<tr><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img3\" name=\"img3\" src=\"/site/global/images/offices/Vienna_Img3_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Vienna_Img3.jpg'\"/></td></tr>" + 
			"</table>" + 
			"</td><td height=\"400\" align=\"left\" valign=\"top\" style=\"padding-top: 5px;\"><img height=\"400\" border=\"0\" id=\"rolloverIMG1\" name=\"rolloverIMG1\" src=\"/site/global/images/offices/Vienna_ImgMain.jpg\"/></td></tr></table>",
		"europe_zurich" : "<hr width=\"100%\" size=\"1\" />" + 
			"<table height=\"400\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr><td height=\"400\" width=\"100\" valign=\"top\">" + 
			"<table cellspacing=\"0\" cellpadding=\"4\" border=\"0\" align=\"left\" width=\"100%\">" + 
			"<tr valign=\"top\"><td align=\"left\" width=\"90\" valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img0\" name=\"img0\" src=\"/site/global/images/offices/Zurich_ImgMain_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Zurich_ImgMain.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img1\" name=\"img1\" src=\"/site/global/images/offices/Zurich_Img1_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/Zurich_Img1.jpg'\"/></td></tr>" +
			"</table>" + 
			"</td><td height=\"400\" align=\"left\" valign=\"top\" style=\"padding-top: 5px;\"><img height=\"400\" border=\"0\" id=\"rolloverIMG1\" name=\"rolloverIMG1\" src=\"/site/global/images/offices/Zurich_ImgMain.jpg\"/></td></tr></table>",
		"middleeast_dubai" : "<hr width=\"100%\" size=\"1\" />" + 
			"<table height=\"400\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr><td height=\"400\" width=\"100\" valign=\"top\">" + 
			"<table cellspacing=\"0\" cellpadding=\"4\" border=\"0\" align=\"left\" width=\"100%\">" + 
			"<tr valign=\"top\"><td align=\"left\" width=\"90\" valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img0\" name=\"img0\" src=\"/site/global/images/offices/Dubai_ImgMain_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Dubai_ImgMain.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img1\" name=\"img1\" src=\"/site/global/images/offices/Dubai_Img1_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Dubai_Img1.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img2\" name=\"img2\" src=\"/site/global/images/offices/Dubai_Img2_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Dubai_Img2.jpg'\"/></td></tr>" + 
			"</table>" + 
			"</td><td height=\"400\" align=\"left\" valign=\"top\" style=\"padding-top: 5px;\"><img height=\"400\" border=\"0\" id=\"rolloverIMG\" name=\"rolloverIMG\" src=\"/site/global/images/offices/Dubai_Img2.jpg\"/></td></tr></table>",
		"uk_bracknell" : "",//"<hr width=\"100%\" size=\"1\" />" + 
			//"<table height=\"400\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr><td height=\"400\" width=\"100\" valign=\"top\">" + 
			//"<table cellspacing=\"0\" cellpadding=\"4\" border=\"0\" align=\"left\" width=\"100%\">" + 
			//"<tr valign=\"top\"><td align=\"left\" width=\"90\" valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img0\" name=\"img0\" src=\"/site/global/images/offices/Bracknell_ImgMain_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Bracknell_ImgMain.jpg'\"/></td></tr>" + 
			//"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img1\" name=\"img1\" src=\"/site/global/images/offices/Bracknell_Img1_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Bracknell_Img1.jpg'\"/></td></tr>" + 
			//"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img2\" name=\"img2\" src=\"/site/global/images/offices/Bracknell_Img2_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Bracknell_Img2.jpg'\"/></td></tr>" + 
			//"</table>" + 
			//"</td><td height=\"400\" align=\"left\" valign=\"top\" style=\"padding-top: 5px;\"><img height=\"400\" border=\"0\" id=\"rolloverIMG\" name=\"rolloverIMG\" src=\"/site/global/images/offices/Bracknell_Img2.jpg\"/></td></tr></table>",
		"uk_dublin" : "<hr width=\"100%\" size=\"1\" />" + 
			"<table height=\"400\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr><td height=\"400\" width=\"100\" valign=\"top\">" + 
			"<table cellspacing=\"0\" cellpadding=\"4\" border=\"0\" align=\"left\" width=\"100%\">" + 
			"<tr valign=\"top\"><td align=\"left\" width=\"90\" valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img0\" name=\"img0\" src=\"/site/global/images/offices/Dublin_ImgMain_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Dublin_ImgMain.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img1\" name=\"img1\" src=\"/site/global/images/offices/Dublin_Img1_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Dublin_Img1.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img2\" name=\"img2\" src=\"/site/global/images/offices/Dublin_Img2_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Dublin_Img2.jpg'\"/></td></tr>" + 
			"</table>" + 
			"</td><td height=\"400\" align=\"left\" valign=\"top\" style=\"padding-top: 5px;\"><img height=\"400\" border=\"0\" id=\"rolloverIMG\" name=\"rolloverIMG\" src=\"/site/global/images/offices/Dublin_Img2.jpg\"/></td></tr></table>",
		"uk_henley" : "<hr width=\"100%\" size=\"1\" />" + 
			"<table height=\"400\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr><td height=\"400\" width=\"100\" valign=\"top\">" + 
			"<table cellspacing=\"0\" cellpadding=\"4\" border=\"0\" align=\"left\" width=\"100%\">" + 
			"<tr valign=\"top\"><td align=\"left\" width=\"90\" valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img0\" name=\"img0\" src=\"/site/global/images/offices/Henley_ImgMain_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Henley_ImgMain.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img1\" name=\"img1\" src=\"/site/global/images/offices/Henley_Img1_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Henley_Img1.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img2\" name=\"img2\" src=\"/site/global/images/offices/Henley_Img2_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Henley_Img2.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img3\" name=\"img3\" src=\"/site/global/images/offices/Henley_Img3_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Henley_Img3.jpg'\"/></td></tr>" + 
			"</table>" + 
			"</td><td height=\"400\" align=\"left\" valign=\"top\" style=\"padding-top: 5px;\"><img height=\"400\" border=\"0\" id=\"rolloverIMG\" name=\"rolloverIMG\" src=\"/site/global/images/offices/Henley_ImgMain.jpg\"/></td></tr></table>",
		"uk_jersey" : "<hr width=\"100%\" size=\"1\" />" + 
			"<table height=\"400\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr><td height=\"400\" width=\"100\" valign=\"top\">" + 
			"<table cellspacing=\"0\" cellpadding=\"4\" border=\"0\" align=\"left\" width=\"100%\">" + 
			"<tr valign=\"top\"><td align=\"left\" width=\"90\" valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img0\" name=\"img0\" src=\"/site/global/images/offices/Jersey_ImgMain_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Jersey_ImgMain.jpg'\"/></td></tr>" + 
			//"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img1\" name=\"img1\" src=\"/site/global/images/offices/Jersey_Img1_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Jersey_Img1.jpg'\"/></td></tr>" + 
			//"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img2\" name=\"img2\" src=\"/site/global/images/offices/Jersey_Img2_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Jersey_Img2.jpg'\"/></td></tr>" + 
			//"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img3\" name=\"img3\" src=\"/site/global/images/offices/Jersey_Img3_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG.src='/site/global/images/offices/Jersey_Img3.jpg'\"/></td></tr>" + 
			"</table>" + 
			"</td><td height=\"400\" align=\"left\" valign=\"top\" style=\"padding-top: 5px;\"><img height=\"400\" border=\"0\" id=\"rolloverIMG\" name=\"rolloverIMG\" src=\"/site/global/images/offices/Jersey_ImgMain.jpg\"/></td></tr></table>",
		"uk_london" : "<hr width=\"100%\" size=\"1\" />" + 
			"<table height=\"400\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr><td height=\"400\" width=\"100\" valign=\"top\">" + 
			"<table cellspacing=\"0\" cellpadding=\"4\" border=\"0\" align=\"left\" width=\"100%\">" + 
			"<tr valign=\"top\"><td align=\"left\" width=\"90\" valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img0\" name=\"img0\" src=\"/site/global/images/offices/LondonPerpetual_ImgMain_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/LondonPerpetual_ImgMain.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img1\" name=\"img1\" src=\"/site/global/images/offices/LondonPerpetual_Img1_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/LondonPerpetual_Img1.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img2\" name=\"img2\" src=\"/site/global/images/offices/LondonPerpetual_Img2_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/LondonPerpetual_Img2.jpg'\"/></td></tr>" + 
			"<tr><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img3\" name=\"img3\" src=\"/site/global/images/offices/LondonPerpetual_Img3_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG1.src='/site/global/images/offices/LondonPerpetual_Img3.jpg'\"/></td></tr>" + 
			"</table>" + 
			"</td><td height=\"400\" align=\"left\" valign=\"top\" style=\"padding-top: 5px;\"><img height=\"400\" border=\"0\" id=\"rolloverIMG1\" name=\"rolloverIMG1\" src=\"/site/global/images/offices/LondonPerpetual_ImgMain.jpg\"/></td></tr></table>",
		"uk_portmansquare" : "<hr width=\"100%\" size=\"1\" />" +			
			"<table height=\"400\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"content\"><tr><td height=\"400\" width=\"100\" valign=\"top\">" + 
			"<table cellspacing=\"0\" cellpadding=\"4\" border=\"0\" align=\"left\" width=\"100%\">" + 
			"<tr valign=\"top\"><td align=\"left\" width=\"90\" valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img4\" name=\"img4\" src=\"/site/global/images/offices/LondonInvesco_ImgMain_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG2.src='/site/global/images/offices/LondonInvesco_ImgMain.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img5\" name=\"img5\" src=\"/site/global/images/offices/LondonInvesco_Img1_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG2.src='/site/global/images/offices/LondonInvesco_Img1.jpg'\"/></td></tr>" + 
			"<tr valign=\"top\"><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img6\" name=\"img6\" src=\"/site/global/images/offices/LondonInvesco_Img2_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG2.src='/site/global/images/offices/LondonInvesco_Img2.jpg'\"/></td></tr>" + 
			"<tr><td valign=\"top\"><img height=\"90\" border=\"0\" width=\"90\" id=\"img7\" name=\"img7\" src=\"/site/global/images/offices/LondonInvesco_Img3_thumb.jpg\" onmouseover=\"javascript:document.rolloverIMG2.src='/site/global/images/offices/LondonInvesco_Img3.jpg'\"/></td></tr>" + 
			"</table>" + 
			"</td><td height=\"400\" align=\"left\" valign=\"top\" style=\"padding-top: 5px;\"><img height=\"400\" border=\"0\" id=\"rolloverIMG2\" name=\"rolloverIMG2\" src=\"/site/global/images/offices/LondonInvesco_ImgMain.jpg\"/></td></tr></table>"
	};
	
	document.write(detailsArray[y]);
	
}

