/***************************************************************
 * js-redirect.js
 *
 * Redirects based on the URL
 *
 * 2008-02-12           kpwerner            Initial development.
 * 2008-06-17           kpwerner            Added farnboroughairshow.
 * 2008-07-08           kpwerner            Added microins.
 ***************************************************************/

//var arrUrls = new Array("singaporeairshow","farnboroughairshow");

var strHref = top.location.href;

if ( strHref.toLowerCase().indexOf("microins") >= 0 )
{
    top.location.href = "http://www.rockwellcollins.com/content/multimedia/10830_index.html";
}
else if ( strHref.toLowerCase().indexOf("farnboroughairshow") >= 0 )
{
    // redirect to home page
    top.location.href = "/";
}
else if ( strHref.toLowerCase().indexOf("singaporeairshow") >= 0 )
{
    // redirect to home page
    top.location.href = "/";
}
else if ( strHref.toLowerCase().indexOf("diversity") >= 0 )
{
    // redirect to diversity page
    top.location.href = "http://www.rockwellcollins.com/about/diversity/";
}
else
{
    // nothing
}