function doCityChange( element )
{
	var cityName = element.alt;
	
	document.getElementById('cityName').innerHTML = cityName;
}

function revertCity( element )
{
	document.getElementById('cityName').innerHTML = '';
}

// Email window popup with disclaimer static text.
// use: when user clicks and attorney email link
//
function videoWindowCareers(url)
{
        newWin = window.open(url, "Video", "toolbar=no,location=no,directories=no,status=no,scrollbars=no,menubar=no,resizable=yes,width=320,height=288");
	newWin.focus();
}

