<!--
	function setStatus(message)
	{
		window.status= message; return true
	}


	function NewWindow(Section, Path)
	{	
		if (Section == 'airportMap')
		{
			airportMapWindow = window.open(Path , Section, 'scrollbars=0,toolbar=0,resizable=0,width=380,height=405,left=0,top=0')
		    airportMapWindow.focus();
		}					
		if (Section == 'flashMap')
		{
			flashMapWindow = window.open(Path , Section, 'scrollbars=0,toolbar=0,resizable=0,width=640,height=600,left=0,top=0')
		    flashMapWindow.focus();
		}					
		if (Section == 'gifMap')
		{
			gifMapWindow = window.open(Path , Section, 'scrollbars=0,toolbar=0,resizable=0,width=310,height=335,left=0,top=0')
		    gifMapWindow.focus();
		}					
		if (Section == 'adverts')
		{
			advertswindow = window.open(Path, Section, 'scrollbars=1,toolbar=0,resizable=1,width=285,height=350,left=0,top=0')
		    advertswindow.focus();
		}		
		if (Section == 'worldclock')
		{
			worldclockwindow = window.open(Path, Section, 'scrollbars=1,toolbar=1,resizable=1,width=500,height=440,left=0,top=0')
		    worldclockwindow.focus();
		}		
		if (Section == 'weather')
		{
			weatherwindow = window.open(Path, Section, 'scrollbars=1,toolbar=0,resizable=1,width=510,height=440,left=0,top=0')
		    weatherwindow.focus();
		}		
		if (Section == 'miniguide')
		{
			miniguidewindow = window.open(Path, Section, 'scrollbars=1,toolbar=1,resizable=1,width=700,height=550,left=0,top=0')
		    miniguidewindow.focus();
		}
		if (Section == 'reviews')
		{
			reviewswindow = window.open(Path , Section, 'scrollbars=1,toolbar=1,resizable=1,width=790,height=560,left=0,top=0')
		    reviewswindow.focus();
		}					
	}
	
//-->
