
function ShowRelatedRunway(link) {
	if (!link) return alert('Link passed to ShowRelatedRunway is not valid.');
	var shRef=link.href;
	if (shRef.length==0) return false;
	window.open(shRef,'wRunway','toolbar=no, width=550, height=420, status=no, scrollbars=no, resizable=no, menubar=no, top=10, left=25');
	return false;
}
