function onCityClicked( code )
{
	var link = getLinkFromCode( code );
	window.location.href = link;
}

function getLinkFromCode( code )
{
	switch( code ) {

	    case "dal": return "/worldlocations/Dallas.aspx?intro=no&location=dal";
	    case "laf": return "/worldlocations/Lafayette.aspx?intro=no&location=laf";
	    case "nca": return "/worldlocations/New Castle.aspx?intro=no&location=nca";
	    case "ros": return "/worldlocations/Roseville.aspx?intro=no&location=ros";
	    case "mex": return "/worldlocations/Mexicali.aspx?intro=no&location=mex";
	    case "rey": return "/worldlocations/Reynosa.aspx?intro=no&location=rey";

	    case "col": return "/worldlocations/Colchester.aspx?intro=no&location=col";
	    case "hav": return "/worldlocations/Havant.aspx?intro=no&location=hav";
	    case "ams": return "/worldlocations/Amsterdam.aspx?intro=no&location=ams";
	    case "zoe": return "/worldlocations/Zoetermeer.aspx?intro=no&location=zoe";
	    case "wei": return "/worldlocations/Weiterstadt.aspx?intro=no&location=wei";
	    case "pra": return "/worldlocations/Prague.aspx?intro=no&location=pra";
	    case "byd": return "/worldlocations/Bydgoszcz.aspx?intro=no&location=byd";
	    case "has": return "/worldlocations/Hasselt.aspx?intro=no&location=has";
	    case "tal": return "/worldlocations/Tallinn.aspx?intro=no&location=tal";
	    case "mad": return "/worldlocations/Madrid.aspx?intro=no&location=mad";

	    case "hon": return "/worldlocations/Hong Kong.aspx?intro=no&location=hon";
	    case "sha": return "/worldlocations/Shanghai.aspx?intro=no&location=sha";
	    case "suz": return "/worldlocations/Suzhou.aspx?intro=no&location=suz";
	    case "pen": return "/worldlocations/Penang.aspx?intro=no&location=pen";
	    case "sin": return "/worldlocations/Singapore.aspx?intro=no&location=sin";
	    case "jak": return "/worldlocations/Jakarta.aspx?intro=no&location=jak";
	    case "syd": return "/worldlocations/Sydney.aspx?intro=no&location=syd";
	    case "seo": return "/worldlocations/Seoul.aspx?intro=no&location=seo";
	}
}
