<!--

function getPhotoTarget(value){
		if (value == "none") return;
			
		pref = "/gallery/";
		suf = ".htm";
		
		this.location = pref + value + suf;
}

function getBuildingTarget(value){
		if (value == "none") return;
			
		pref = "/buildings/";
		suf = ".htm";
		
		this.location = pref + value + suf;
}

function getPosterTarget(value, tpe){
		if (value == "none") return;
		
		if(tpe == 'city')
		{
			url = "/" + value + "/" + value + "posters.htm";
		}
		else
		{
			url = "http://posters.aviewoncities.com/" + value + ".htm";
		}
		
		this.location = url;
}
//-->