var _debug = 1;

function visRCM(lType, cbox) {
	try {
		var obj = document.getElementById(lType);
		obj.style.visibility = (cbox.checked) ? 'visible' : 'hidden';
	} catch (error) {
		if (_debug) alert(error);
	}
}

function gotoCity(cc) {
	document.location.href = '/weather/Weather.do?ic=' + cc;
}