function openNewWindow(url) {
    window.open(url,"",'width=760,height=550,status=yes,scrollbars=yes,fullscreen=no,resizable=yes');
}

function Initialize()
{
	// This is an example of a possible initialization file for a parking booking
	// form using separate dropdown lists for all elements.
	// DO NOT CHANGE ANYTING ELSE BUT VALUES
	// CHANGING VARIABLE NAMES COULD  ||
	// CAUSE MALFUNCTIONS			  ||
	//								\ || /
	// 			 					 \||/
	//	Location settings			  \/		
	this.WhichLocations		= 	'all';		// OPTIONS:	all, airports, ports
	this.Preselect			=	'detect';	// OPTIONS: detect, airportname
	this.Sampling			= 	'byname';	// OPTIONS: byname, bycode
	// Element ID settings
	this.depYid				=	'ddy';		// set select node ids
	this.depMid				=	'ddm';
	this.depDid				=	'ddd';
	this.depHrs				= 	'dth';
	this.depMin				= 	'dtm';
	this.retYid				=	'rdy';
	this.retMid				=	'rdm';
	this.retDid				=	'rdd';
	this.retHrs				= 	'rth';
	this.retMin				= 	'rtm';
	this.DateSeparator		= 	'';
	this.TimeSeparator		= 	'';		
	// Time settings
	this.timeInterval		= 	30;			// set time intervals for minutes (e.g. 10 -> 10..20..30)
	this.selDepHr			= 	6;			// set departure hour selection
	this.selRetHr			= 	18;			// set return hour selection
	// Format settings
	this.DayValueFormat		=	'N2';		// OPTIONS:	N1 -> natural numbers, N2 -> forced 2 digit numbers (leading zero)
	this.MonthValueFormat	=	'N2';		// OPTIONS:	S -> full month names, S3 -> Short month names, N1 -> natural numbers, 
											//			N2 -> forced 2 digit numbers (leading zero)
	this.YearValueFormat	=	'N2';		// OPTIONS:	N2 -> Short year (e.g. 08), N4 -> full year
	this.DateFormat			=	'GB';		// OPTIONS: GB -> DayMonthYear order, else -> YearMonthDay order

}



