| Related sites for http://www.flightstats.com/ |
| EC&M_on-line National electrical Code, power distribution and harmonics. | | The_Electrical_Advertiser Electrical industries buying guide. This publication is distributed monthly for electrical industry buyers, contractors, engineers, purchasing agents, project managers and plant managers. | | Electrical_Wholesaling_Online_Resource_Center Target audience: Owners, managers and sales people in electrical distributorships. | | Electrician_Guide National Directory of Electrician Contractors and Suppliers. | | Electricity_Today_Magazine An e-magazine designed to reach high voltage electric utility engineering, construction and maintenance professionals. | | Electronic_News Provides news and analysis for the strategic decision maker in the electronics industry. | | Electronics_For_You Top 100 companies listed, free circuits, e-websearch, articles and contests. | | Electronics_Industry_News_-_Topix_net News on the electronics industry continually updated from thousands of sources around the net. | | Electronicstalk The latest electronics technology and electronics business news for electronics engineers. | | Evertiq News portal for the electronics business, primarily focusing on Europe. | | IEEE_Spectrum High technology magazine and flagship publication of the Institute of Electrical and Electronics Engineers, Inc. (IEEE) | | OPUS_Publishing Newsletter and calendar of events is open to the public. Access to Que Pasa, resource library and interactive workshops requires a subscription. | | Paumanok_Publications,_Inc_ Publishes Passive Component Industry magazine. | | Pennwell_Publications A wide variety of periodicals and books, including many concerning electrical maintenance and manufacturing. | | Superconductor_Week The weekly online news publication for the electronics and superconductor industry. | | T&D_World_Online Professionals involved in the plan, design, construction, operations and maintenance of transmission and distribution facilities, including automation and information technology. | | TKB-4u_ Site for engineers involved with process, semiconductors, integrated circuits, assembly, placement, wire bonding, encapsulation and package inspection. | | The_12_Volt_News A monthly publication for members of the Mobile Electronics Industry. | | Wire_Association_International International Network for wire and cable professionals. | | World_Servo Servo motor control discussion details the difference between sinewave amplifiers, vector control and 6-step drives. Highlights performance differences between positioning drives and servo control bo | | Topix_net__Electronics News about the electronics industry, collected from various sources on the web. [RSS] | | AAK_Corporation Manufacturer of DC power supplies, DC/AC and AC/AC converters, constant current sources, and similar products. | | AC_Power_Corp_ Manufacturer of automatic voltage regulator, UPS , AC power source, frequency converter and power line conditioners. | | Acopian_Power_Supplies Manufacturer of single, dual, triple and wide adjust output AC-DC power supplies, DC-DC converters, high voltage power supplies, power systems, and redundant power packages. | | Advanced_Conversion_Technology,_Inc_ Designers and manufacturers of both high and low voltage custom power supplies for military and high grade industrial applications. | | AEES Full range of thyristor chargers, switch mode rectifiers, inverters, DC-DC converters, emergency lighting, UPS single and 3 phases, voltage stabilizers, and cathodic protection. | | Amtex_Electronics Manufacturer of AC/DC power supplies, DC/DC converters, power inverters and battery chargers. | | Analytic_Systems Manufacturer of AC and DC power supplies, DC to AC inverters, DC to DC voltage converters, and battery chargers for multiple applications. | | Anoma_Electric_Company,_Ltd_ Manufacturer of AC and DC adapters, lithium ion battery chargers, switching power supplies and transformers. | | Arnatronic_Plus Manufacturer of standard and custom stabilized DC and AC power supplies, battery chargers, converters, and specialized function cards. | | Ascom_Energy_Systems Custom designed AC/DC, DC/DC converters, inverters, power supplies, and power systems. | | Aseem_Power_Tekneeks_Pvt__Ltd_ Manufacture of ups systems, inverters, converters, constant voltage transformers. From India. | | Asian_Converter_Technology_GmbH Manufacturer of power supplies based in Germany with manufacturing in Asia. | | Astron_Corporation Provider of power supplies, converters, inverters and chargers. | | Ault_Korea_Corporation Manufacturer of SMPS, DC-DC converter, AC-DC adapter, linear transformer, battery charger for medical equipment. | | Behlman_Electronics Manufacturer of AC and DC power supplies, inverters, converters, UPSs and line conditioners. | | Bellus_Power Supplier of a wide range of power supplies including : open frame power supplies, wall mount adapters, enclosed power supplies, DC/DC Converters. Feature include: switch mode, linear, universal input, | | Benbro_Electronics,_Inc_ Design and manufacture electronic equipment including commercial public address amplifiers, power supplies and DC/DC converters. Online line card and product specifications. | | Beta_Dyne_Inc Power converters and inverters, DC/DC converters, isolation-amplifiers. Application areas include telecom, computer and instrumentation. | | Block_GmbH Manufacture of transformers, chokes, power supplies and EMC filters for industrial machinery, telecommunication, computer, medical systems. US Office. |
|
var prefix = "ROS_";
Track Flight Status, Airport Delays and other Flight and Airport Information
div.popupCalendar
{
-moz-box-sizing: border-box;
box-sizing: border-box;
position: absolute;
z-index: 101;
overflow: auto;
color: black;
font-family: Arial, Verdana, sans-serif;
font-size: 9pt;
background: #FFFFFF;
}
div.popupCalendar div
{
cursor: default;
padding: 0px 0px;
}
iframe.popupCalendar
{
position: absolute;
z-index: 100;
}
// container
// text field,
// button
// date format to use
function PopupCalendar(containerId, fieldId, buttonId, dateFormat, minDate, maxDate, popUp)
{
var me =
{
//Constructor
init : function(containerId, fieldId, buttonId)
{
this.popUp = popUp;
this.ignoreClick = false;
this.textbox = YAHOO.util.Dom.get(fieldId);
this.buttonId = buttonId;
this.dateFormat = dateFormat;
if (null == this.dateFormat)
dateFormat = "MM/dd/yyyy";
this.container = document.createElement("div");
this.container.style.visibility = "hidden";
// if (xIE4Up)
// this.container.style.width = this.textbox.offsetWidth;
this.container.id = containerId;
this.container.className = "popupCalendar";
this.container.style.left = this.getLeft() + "px";
this.container.style.top = (this.getTop() + this.textbox.offsetHeight) + "px";
this.iframe = null;
if (xIE4Up)
{
this.iframe = document.createElement("iframe");
this.iframe.src = "/go/NewCommon/blank.html";
this.iframe.className = "popupCalendar";
this.iframe.style.visibility = this.container.style.visibility;
this.iframe.style.width = this.container.style.width;
this.iframe.style.left = this.container.style.left;
this.iframe.style.top = this.container.style.top;
document.body.appendChild(this.iframe);
}
document.body.appendChild(this.container);
this.calendar = new YAHOO.widget.Calendar(this.id, this.container.id,
{mindate: minDate,
maxdate: maxDate,
hide_blank_weeks: true}
);
var temp = this;
this.calendar.selectEvent.subscribe(temp.onSelect , this.calendar, true);
// this.calendar.onSelect = function() {temp.onSelect( )};
this.calendar.render();
// YAHOO.util.Event.addListener(this.textbox.id, 'focus', function() {temp.showCal();});
YAHOO.util.Event.addListener(this.textbox.id, 'blur', function() {temp.hideCal();});
YAHOO.util.Event.addListener(this.buttonId, 'focus', function() {temp.showCal();});
YAHOO.util.Event.addListener(this.buttonId, 'blur', function() {temp.hideCal();});
YAHOO.util.Event.addListener(this.container.id , 'mouseover', function() {temp.overCal();});
YAHOO.util.Event.addListener(this.container.id, 'mouseout', function() {temp.outCal();});
YAHOO.util.Event.addListener(document.body, 'click', temp.bodyClick);
},
showCal : function()
{
me.ignoreClick = true;
if (me.textbox.value != null && me.textbox.value.length > 0)
{
me.selectingValue = true;
var dateValue = me.textbox.value;
var parsedDate = getDateFromFormat(dateValue, dateFormat);
if (null != parsedDate)
{
me.calendar.select(formatDate(parsedDate, 'MM/dd/yyyy'));
var selectedDates = me.calendar.getSelectedDates();
if (selectedDates.length > 0)
{
var firstDate = selectedDates[0];
me.calendar.cfg.setProperty("pagedate", (firstDate.getMonth()+1) + "/" + firstDate.getFullYear());
}
}
me.selectingValue = false;
}
me.calendar.render();
me.container.style.left = me.getLeft() + "px";
if (me.popUp)
me.container.style.top = (me.getTop() - me.container.offsetHeight) + "px";
else
me.container.style.top = (me.getTop() + me.textbox.offsetHeight) + "px";
me.container.style.visibility = "visible";
if (null != me.iframe)
{
me.iframe.style.width = me.container.style.width;
me.iframe.style.left = me.container.style.left;
me.iframe.style.top = me.container.style.top;
me.iframe.style.visibility = me.container.style.visibility;
me.iframe.style.width = me.container.offsetWidth;
me.iframe.style.height = me.container.offsetHeight;
}
},
overCal : function()
{
me.over_cal = true;
me.textbox.focus( );
},
outCal : function()
{
me.over_cal = false;
},
onSelect : function(type, args, obj)
{
if (me.selectingValue)
return;
var selected = args[0];
var selDate = this.toDate(selected[0]);
// var selDate = this.calendar.getSelectedDates()[0];
me.textbox.value = formatDate(selDate, dateFormat);
me.over_cal = false;
me.hideCal( );
},
hideCal : function()
{
if (!me.over_cal)
{
me.container.style.visibility = "hidden";;
if (null != me.iframe)
me.iframe.style.visibility = "hidden";;
}
},
getLeft : function ()
{
var oNode = me.textbox;
var iLeft = 0;
while ((null != oNode) && (oNode.tagName != "BODY"))
{
iLeft += oNode.offsetLeft;
oNode = oNode.offsetParent;
}
return iLeft;
},
getTop : function ()
{
var oNode = me.textbox;
var iTop = 0;
while((null != oNode) && (oNode.tagName != "BODY"))
{
iTop += oNode.offsetTop;
oNode = oNode.offsetParent;
}
return iTop;
},
bodyClick : function ()
{
if (me.ignoreClick)
me.ignoreClick = false;
else if (me.container.style.visibility == "visible")
{
me.hideCal( );
}
}
};
me.init(containerId, fieldId, buttonId, dateFormat);
return me;
}
var onloadListeners = new Array();
addOurOnLoadListeners = function(listener)
{
onloadListeners[onloadListeners.length] = listener;
}
ourLoad = function()
{
for (var i = 0; i < onloadListeners.length; i++)
{
var func = onloadListeners[i];
func.call();
}
}
doOurLoad = function()
{
ourLoad();
}
function swapBackground(element_id, left, top)
{
xGetElementById(element_id).style.backgroundPosition = "-" + left + "px -" + top + "px";
}
function swapImage(element_id, image_url, alt_text)
{
document.images[element_id].src=image_url;
}
weather_tiles_url = "http://www.flightstats.com/googlemaptiles/weather/noaa"; default_airport_info_type = "delay_indexes";
// addOurOnLoadListeners(setupGoogleMap);
xAddEventListener(window, 'load', setupGoogleMap, false);
xAddEventListener(window, 'unload', GUnload, false);
GS_googleAddAdSenseService("ca-pub-8281740535083873");
GS_googleEnableAllServices();
var googleAdTest = "off";
var userCountry = "US";
var flightStatsURL = "www.flightstats.com";
var googleKeyWords = "frequent flyer, business travel, travel";
var altUrl = "http://" + flightStatsURL + "/go/ReplacementAds/replaceAd.do?adServer=Google&countryCode=" + userCountry;
GA_googleAddAdSensePageAttr("google_color_link", "1833FF");
GA_googleAddAdSensePageAttr("google_ad_region", "test");
var top728x90GoogleAdChannel = "5788149013+8285193773+3610317267";
GA_googleAddSlot("ca-pub-8281740535083873", prefix + "top_728x90");
GA_googleAddAdSenseSlotAttr(prefix + "top_728x90", "google_ad_channel", top728x90GoogleAdChannel);
GA_googleAddAdSenseSlotAttr(prefix + "top_728x90", "google_alternate_ad_url", altUrl + "&adSize=728x90");
if (googleKeyWords && (googleKeyWords != ''))
{
GA_googleAddAdSenseSlotAttr(prefix + "top_728x90", "google_kw", googleKeyWords);
GA_googleAddAdSenseSlotAttr(prefix + "top_728x90", "google_kw_type", "broad");
}
var topRight300x250AdChannel = "5788149013+0874867488";
GA_googleAddSlot("ca-pub-8281740535083873", prefix + "top_right_300x250");
GA_googleAddAdSenseSlotAttr(prefix + "top_right_300x250", "google_ad_channel", topRight300x250AdChannel);
GA_googleAddAdSenseSlotAttr(prefix + "top_right_300x250", "google_alternate_ad_url", altUrl + "&adSize=300x250");
if (googleKeyWords && (googleKeyWords != ''))
{
GA_googleAddAdSenseSlotAttr(prefix + "top_right_300x250", "google_kw", googleKeyWords);
GA_googleAddAdSenseSlotAttr(prefix + "top_right_300x250", "google_kw_type", "broad");
}
GA_googleFetchAds();
airportSearchLoad = function() {
var fsAirportSearchTextBox = new AutoSuggestControl(document.getElementById("fsAirportSearch"),
new RemoteAirportSuggestions(), null, null, null, null, 233, null,
10);
}
xAddEventListener(window, "load", airportSearchLoad, false);
addOurOnLoadListeners(airportSearchLoad);
Interactive Airport Map
Custom
Streets
Satellite
Hybrid
Physical
Radar
Delay Indexes
FAA Airport Delays
Highest Rated
Most Rated
Loading...
Global View
Africa
Asia
Caribbean
Central America
Europe
Middle East
North America
Oceania
South America
-------------
(AU) Australia, Oceania
(BE) Belgium, Europe
(CA) Canada, North America
(CN) China, Asia
(CY) Cyprus, Europe
(DK) Denmark, Europe
(FI) Finland, Europe
(FR) France, Europe
(DE) Germany, Europe
(IN) India, Asia
(IE) Ireland, Europe
(IL) Israel, Middle East
(IT) Italy, Europe
(JP) Japan, Asia
(MX) Mexico, North America
(NL) Netherlands, Europe
(NZ) New Zealand, Oceania
(PL) Poland, Europe
(SG) Singapore, Asia
(ES) Spain and Canary Islands, Europe
(SE) Sweden, Europe
(CH) Switzerland, Europe
(TH) Thailand, Asia
(TR) Turkey, Europe
(GB) United Kingdom, Europe
geo_country_default = "US,38.0,-97.0,4";
(US) United States, North America
-------------
United States - Midwest
United States - Northeast
United States - Northwest
United States - South
United States - Southeast
United States - Southwest
Road Warrior Tools
Get the information you need - even when you're on the go.
Mobile Tools
Flight Status
Real-Time Flight Tracker
Mobile/Email Flight Alerts
Airport Delays
Weather
Planning Ahead
Not all flights and airlines perform equally. Know before you go.
On-Time Performance Ratings
Flight Availability - New!
Airport Tips & Ratings
Published Fares
Travel Deals
Frequent Flyer Promotions
Global Arrivals & Departures
Get real-time flight status. Worldwide, accurate departures and arrivals.
Airport Arrivals & Departures
Flight Status by Flight Number
Flight Status by Route
Real-Time Flight Tracker
Airport Tracker - New!
Airport Information
Personal Tools
Free FlightStats apps for the desktop, blog, or social network.
Widgets & Gadgets
Browser Toolbar Buttons
Google Search
FaceBook Application
RSS Feeds
Third Party Tools
Travel Tools
More Tools
Airport Information
Airport Chatter
Airport User Ratings
Airport Delays
On-time Performance
Flight Tracker
Flight Alerts
Frequent Flyer Promos
Published Fares
var flightStatusWidgetTabPanelGroup1;
var fsDefaultDateFormat = "yyyy-MM-dd";
var fsByFlightDepartureDateControl = null;
var fsByFlightDepartureDateCalendar = null;
flightStatusWidgetLoad = function()
{
var fsTextbox1 = new AutoSuggestControl(document.getElementById("fsAirline"), new RemoteAirlineSuggestions(), null, null, 2, 20, 233, document.getElementById("fsTabPanelGroup"), 10);
var fsTextbox2 = new AutoSuggestControl(document.getElementById("fsDepartureAirport"), new RemoteAirportSuggestions(), null, null, 2, 20, 233, document.getElementById("fsTabPanelGroup"), 10);
var fsTextbox3 = new AutoSuggestControl(document.getElementById("fsArrivalAirport"), new RemoteAirportSuggestions(), null, null, 2, 60, 233, document.getElementById("fsTabPanelGroup"), 10);
var fsTextbox4 = new AutoSuggestControl(document.getElementById("fsAirport"), new RemoteAirportSuggestions(), null, null, 2, 18, 233, document.getElementById("fsTabPanelGroup"), 10);
var fsTextbox5 = new AutoSuggestControl(document.getElementById("fsAirportAirline"), new RemoteAirlineSuggestions(), null, null, 2, 90, 233, document.getElementById("fsTabPanelGroup"), 10);
fsByFlightDepartureDateControl = new DateControl(document.getElementById("fsByFlightDepartureDateTextField"), document.getElementById("fsByFlight_dateError"), fsDefaultDateFormat, getDateFormats(), "Invalid date");
if (null == fsByFlightDepartureDateControl.getDate())
fsByFlightDepartureDateControl.setDate(new Date());
var maxDate = new Date();
maxDate.setDate(maxDate.getDate() + 2);
var maxDateString = formatDate(maxDate, 'MM/dd/yyyy');
fsByFlightDepartureDateCalendar = new PopupCalendar("fsByFlightDepartureDateCalContainerId", "fsByFlightDepartureDateTextField", null, fsDefaultDateFormat, "1/1/2005", maxDateString, false);
// xTabPanelGroup(w, h, th, tgId, tpgId, clsTP, clsTG, clsTD, clsTS, posTabs, tabBorderHeight, panelBorderWidth, selectedTab)
flightStatusWidgetTabPanelGroup1 = new xTabPanelGroup(244, 153, 22, "fsTabGroup", "fsTabPanelGroup", "widgetTabPanel", "widgetTabGroup", "widgetTabDefault", "widgetTabSelected", false, 0, 0, 0, false);
// form = xGetElementById("widgetFlightStatusByFlightForm");
// setDefaultDates(form.flightQueryDate, 1, 1, "NNN-dd-yyyy");
form = xGetElementById("widgetFlightStatusByRouteForm");
setDefaultDates(form.routeQueryDate, 1, 1, "NNN-dd-yyyy");
form = xGetElementById("widgetFlightStatusByAirportForm");
setDefaultDates(form.airportQueryDate, 1, 1, "NNN-dd-yyyy");
}
flightStatusWidgetUnLoad = function()
{
if (flightStatusWidgetTabPanelGroup1)
flightStatusWidgetTabPanelGroup1.onUnload();
}
// We need to load here instead of after the widget load because of some weird crash IE was having with the Yahoo calendar
addOurOnLoadListeners(flightStatusWidgetLoad);
xAddEventListener(window, "unload", flightStatusWidgetUnLoad, false);
Flight Status
By Flight
By Airport
By Route
Airline
Flight
Departure Date
Airport
Date
Tue January 8, 2006
Wed January 9, 2006
Thu January 10, 2006
Time Period
Current Time Period
Mid - 6am
6am - Noon
Noon - 6pm
6pm - Mid
Airline (Optional)
Departures
Arrivals
Departure
Arrival
Departure Date
Tue January 8, 2006
Wed January 9, 2006
Thu January 10, 2006
GA_googleFillSlot(prefix + "top_right_300x250");
FlightStats News
more
15 Apr 08
Site Changes
07 Apr 08
March 2008 Performance Reports
28 Feb 08
FlightStats Webware 100 Finalist
12 Jan 08
2007 Performance Reports
Stay up to date on the latest travel tools and tips. Sign-up for our newsletter.
Name:
Email:
Submit
Downloads
FlightStats Mobile
RSS Feeds
Link to Us
Contact
About
Advertise With Us
Terms of Use
Privacy
Sitemap
Copyright
_qacct="p-22S-T-z5RimQg";quantserve();
doOurLoad();
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write("\\" );
var pageTracker = _gat._getTracker("UA-382334-1");
pageTracker._initData();
pageTracker._trackPageview();
GA_googleFillSlot(prefix + "top_728x90");
Flights
Flight Status
Flight Tracker
Flight Availability
Flight Rating
Flight Alert
My Flight Alerts
Airports
Airport Information
Delays By Airport
FAA Airport Delays
Airport Tracker
Airport Chatter
Airport User Ratings
Airport Scorecard
Security Wait Times
Airport Parking
Traffic Conditions
Weather
Airports of the World
Airlines
Airline Information
Airline Scorecard
Airlines of the World
Travel Planning
Flight Availability
Travel Deals
Frequent Flyer
Published Fares
Country Information
Travel Warnings
Travel Advisories
Consular Information Sheets
Downloads
Personal Tools
For Your Website
For Developers
Community
Forums
Support
Travel Directory
About
Company
News
Business Solutions
Advertise With Us
Request Info
Contact Us
var headerGoogleCustomSearchBoxElement = document.getElementById('headerGoogleCustomSearchBox');
headerGoogleCustomSearchBoxElement.style.border = '1px solid #cecece';
Downloads
Developer Center
Forums
FlightStats Home
Welcome
Guest - Login
My Account
var addthis_pub = 'FlightStats';
|
|