
	
function update_frame(myoptions) {
destination = myoptions[myoptions.selectedIndex].value;
if (destination == "null") {
			return true;
		  }
window.open(destination, '_top');
myoptions.selectedIndex = 0;
return true;
}

function selectedCountry(opts,save) {
if (save) {
  var country=opts[opts.selectedIndex].value.match(/\/\/[^\/]+\/([^\/]+)\//)[1];
  if (country) {
    var expdate = new Date();
    expdate.setTime(expdate.getTime()+(1000*60*60*24*360));
    SetCookie('selectedCountry',country,expdate,'/','.mci.com');
  }
}
update_frame(opts);
}



