// script for FFF schedule for Runway photo popups


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=610, height=450, status=no, scrollbars=no, resizable=no, menubar=no, top=10, left=100');
	return false;
}
