// JavaScript Document
// (C) COPYRIGHT 2006 nextops

function showmenu(menu)
{
	document.getElementById('MenuSkyBreathe').style.display="none";
	document.getElementById('MenuEUETS').style.display="none";
	document.getElementById('MenuFuelSaving').style.display="none";
	document.getElementById('MenuOpenAirlines').style.display="none";	
	if (document.getElementById(menu)) {
		document.getElementById(menu).style.display="";
	}
}

/*
function showmoto()
{
	var maxMotoNo = 1;
	var motoNo;
	var myMoto = new Array();

	myMoto[0] = '<a href="airline-products/products-crew-management-fuel-saving-eu-ets.html#SkyBreathe"><img src="img/motoskybreathe.jpg" alt="OpenAirlines introduces SkyBreathe EU ETS MRV solution" width="570" height="150" border="0" /></a>';
	myMoto[1] = '<a href="airline-products/products-crew-management-fuel-saving-eu-ets.html#CrewIntelligence"><img src="img/motocrewintelligence.jpg" alt="OpenAirlines introduces CrewIntelligence dashboard for optimized crew rosters" width="570" height="150" border="0" /></a>';
	
	motoNo = Math.round(Math.random() * maxMotoNo);
	document.write(myMoto[motoNo]);
}
*/
 function showmoto()
 {
	 var motoNo = Math.round(Math.random()*2);
	if (motoNo !=2 ) {
		document.getElementById('Moto1').style.display="";
		document.getElementById('Moto2').style.display="none";
	} else {
		document.getElementById('Moto1').style.display="none";
		document.getElementById('Moto2').style.display="";
	};
 }
		 
