function OpenPrintWindow(page) {
    if (!printWindow) {
        var printWindow = window.open(page,"print","status=yes,menubar=no,toolbar=no,scrollbars=yes,width=790,height=600");
    } else {
		printWindow.location = page;
	}
	printWindow.focus();
}

function JumpToCity(select) {
	window.location.hash = select.options[select.selectedIndex].value;
}