// JavaScript Document//NAV SELECT BOX
function GoUrl()
{
var url= new Array();
url[0]="";
url[1]="";
url[2]="http://partners.inmarsat.com/";
url[3]="http://broadband.inmarsat.com/";
url[4]="http://www.inmarsat.com/vor/";
url[5]="http://maritime.inmarsat.com/safety_iframe.aspx";
url[6]="http://crewcalling.inmarsat.com/";
url[7]="http://fleet.inmarsat.com/";
url[8]="http://conferences.inmarsat.com/";
url[9]="";
url[10]="";
var choice = document.QuickForm.Quicklink.selectedIndex;
if(url[choice]!=""){
	if(url[choice]=="http://www.inmarsat.com/vor/"){
		window.open(url[choice]);
		}
	else if (url[choice]=="http://fleet.inmarsat.com/"){
		window.open(url[choice]);
		}
	else if (url[choice]=="http://conferences.inmarsat.com/"){
		window.open(url[choice]);
		}
	else	{
		window.location.href=url[choice];
		}
	}
}// JavaScript Document
