/////////////////////////////////////////////////////
/* No Right Click - Terry Williams - December 2000 */
/////////////////////////////////////////////////////
var message="Our work, & the work of others used here by permission,\n\ should NOT be taken from this site.\n\ \n\Please contact us at Enquiries@MinistryOfAir.com.\n\& we will be delighted to help you.\n\ \n\Thank You";
function click(e) {
if (document.all) {
if (event.button == 2||event.button==3) {
alert(message);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
/////////////////////////////////////////////////////
/* Center Pop-Up - Terry Williams - September 2001 */
/* Parameters for inclusion in html file are scrollbars, menubar, toolbar, statusbar */
/////////////////////////////////////////////////////
var win = null;
function NewWindow(mypage,myname,w,h,scroll,menu,tools,stat){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',menubar='+menu+',toolbar='+tools+',status='+stat+',directories=0,resizable=1,location=0,'
win = window.open(mypage,myname,settings)
}
/////////////////////////////////////////////////////
/* Set  Home Page - Terry Williams - November 2001 */
/* Parameters for inclusion in html file are tba */
/////////////////////////////////////////////////////
function setHome(arg){
if(navigator.appVersion.charAt(navigator.appVersion.indexOf("MSIE") + 5) >= 5 && navigator.platform.indexOf("Win16") == -1 
 && navigator.platform.indexOf("Mac") == -1){
 		arg.style.behavior='url(#default#homepage)';
 		arg.setHomePage('http://www.MinistryOfAir.com/');
 		arg.href="#";
 		return true;
 	}
 	else {return false}
}
/////////////////////////////////////////////////////////
/* Detect Screen Size - Terry Williams - December 2001 */
/* Load appropriate Style Sheet(css) Files to suit     */
/////////////////////////////////////////////////////////
if (screen.width==640||screen.height==480) //if 640x480
document.writeln("<!--link href='MOA640.css' rel='stylesheet' type='text/css'-->")
if (screen.width==800||screen.height==600) //if 800x600
document.writeln("<!--link href='MOA800.css' rel='stylesheet' type='text/css'-->")
if (screen.width==848||screen.height==480) //if 848x480
document.writeln("<!--link href='MOA800.css' rel='stylesheet' type='text/css-->")
else if (screen.width==1024||screen.height==768) //if 1024x768
document.writeln("<!--link href='MOA2.css' rel='stylesheet' type='text/css'-->")
else if (screen.width==1280||screen.height==1024) //if 1280x1024
document.writeln("<!--link href='MOA.css' rel='stylesheet' type='text/css'-->")
/////////////////////////////////////////////////////