function launchExperience(){
	var win;
	var xpos;
	var ypos;
	xpos = (screen.availWidth - 614) / 2;
	ypos = (screen.availHeight - 410) / 2;
	if(navigator.appName != "Microsoft Internet Explorer"){
		winVal = 618;
	}else{
		winVal = 612;
	}
	win = window.open('intro.htm','intro','status=no,resizable=no,scrollbars=yes,location=no,toolbar=yes,left=' + xpos + ',top=' + ypos + ',width='+ winVal+',height=410');
	win.focus();
}
function launchFlash(){
	var win;
	var xpos;
	var ypos;
	xpos = (screen.availWidth - 614) / 2;
	ypos = (screen.availHeight - 410) / 2;
	win = window.open('experience.htm','experience','status=no,resizable=no,scrollbars=no,location=no,left=' + xpos + ',top=' + ypos + ',width=600,height=400');
	win.focus();
	//self.close();
}

function getAirbusSpecial(){
	var win;
	var xpos;
	var ypos;
	xpos = (screen.availWidth - 550) / 2;
	ypos = (screen.availHeight - 335) / 2;
	win = window.open('features/feature_special_airbus.html','airbus_special','status=no,resizable=no,scrollbars=no,location=no,left=' + xpos + ',top=' + ypos + ',width=550,height=335');
	win.focus();
}