<!--

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(this.location.hostname == 'localhost')
		{
			domain = "/posters/";
		}
		else
		{
			domain = "http://posters.aviewoncities.com/";
		}
		pref = tpe == 'city' ? 'cities/' : '';
		suf = ".htm";
		
		this.location = domain + pref + value + suf;
}
//-->