// 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=733, height=480, status=no, scrollbars=no, resizable=no, menubar=no, top=100, left=25');
        return false;
}

