
function StopError() {
         return true;
}

window.onerror = StopError;

function aNaviGoToSite(dropDown) {
	var url = dropDown.options[dropDown.selectedIndex].value;
	if ( (url != "#") && (url != "") ) {
		window.location.href = url;
	}
}
