// JavaScript Document

function display_route_popup(file, route, width, height) {
	var routen_file = "routen/" + file;
	var window_features = "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbar=yes,resizable=yes,width=" + width + ",height=" + height;
	window.open(routen_file, route, window_features);
}

