<!-- land en plaats selectie script -->

		function click() {
		if (event.button==2) {
		alert('...')
		}
		}
		document.onmousedown=click
		
		function blockError(){return true;}
	
		window.onerror = blockError;

		<!--

//Double Combo Box with Description Code- by Randall Wald (http://www.rwald.com)
//Visit JavaScript Kit (http://javascriptkit.com) for script
//Credit must stay intact for use

var num_of_cats = 16; // This is the number of categories, including the first, blank, category.
var open_in_newwindow=0; //Set 1 to open links in new window, 0 for no.
var option_array = new Array(num_of_cats);

option_array[0] = new Array("- Select a city -",
    "Graz",
    "Salzburg",
	"Vienna");

option_array[1] = new Array("- Select a city -", 	
	"Brussels");

option_array[2] = new Array("- Select a city -",
	"Prague");

option_array[3] = new Array("- Select a city -", 	
	"Copenhagen");

option_array[4] = new Array("- Select a city -",
	"La Rochelle",
	"Nice",
	"Paris");

option_array[5] = new Array("- Select a city -",  
    "Berlin",  
    "Dresden",
	"Francfurt",
	"Hamburg",
	"Köln");
 
option_array[6] = new Array("- Select a city -",
	"Athens");

option_array[7] = new Array("- Select a city -",
	"Budapest");

option_array[8] = new Array("- Select a city -",
	"Amalfi Coast",
	"Bologna",
	"Florence",
	"Milan",
	"Rimini");

option_array[9] = new Array("- Select a city -",
    "Amsterdam",
    "Bergen",
	"Blokzijl",
	"De Koog (Texel)",
    "Dordrecht",
	"Ellecom",
	"Hengelo",
    "Maastricht",
	"Noordwijk",
	"Otterlo",
	"Rijswijk",
	"Rotterdam",
	"Texel", 
	"The Hague",
	"Tubbergen",
	"Waalwijk");

option_array[10] = new Array("- Select a city -",
    "Warsaw");

option_array[11] = new Array("- Select a city -",
    "Barcelona",
	"Madrid",
	"Valencia");

option_array[12] = new Array("- Select a city -",
	"Stockholm");

option_array[13] = new Array("- Select a city -",
	"Geneva",
	"Zürich");

option_array[14] = new Array("- Select a city -",
	"Leeds",
	"London");

var url_array = new Array(num_of_cats);

url_array[0] = new Array("#",

    "http://www.trendy-hotels.com/city/Graz",
	"http://www.trendy-hotels.com/city/Salzburg",
	"http://www.trendy-hotels.com/city/Vienna");

url_array[1] = new Array("#",
	"http://www.trendy-hotels.com/city/Brussels"); 

url_array[2] = new Array("#",
 	"http://www.trendy-hotels.com/city/Prague"); 

url_array[3] = new Array("#",
	"http://www.trendy-hotels.com/city/Copenhagen"); 

url_array[4] = new Array("#",
	"http://www.trendy-hotels.com/city/La Rochelle",
	"http://www.trendy-hotels.com/city/Nice",
	"http://www.trendy-hotels.com/city/Paris");

url_array[5] = new Array("#",
    "http://www.trendy-hotels.com/city/Berlin",   
	"http://www.trendy-hotels.com/city/Dresden",
	"http://www.trendy-hotels.com/city/Francfurt",
	"http://www.trendy-hotels.com/city/Hamburg",
	"http://www.trendy-hotels.com/city/Köln");

url_array[6] = new Array("#",
	"http://www.trendy-hotels.com/city/Athens");

url_array[7] = new Array("#",
	"http://www.trendy-hotels.com/city/Budapest");

url_array[8] = new Array("#",
	"http://www.trendy-hotels.com/city/Amalfi Coast",
	"http://www.trendy-hotels.com/city/Bologna",
	"http://www.trendy-hotels.com/city/Florence",
	"http://www.trendy-hotels.com/city/Milan", 
	"http://www.trendy-hotels.com/city/Rimini"); 

url_array[9] = new Array("#",
	"http://www.trendy-hotels.com/city/Amsterdam", 
	"http://www.trendy-hotels.com/city/Bergen", 
	"http://www.trendy-hotels.com/city/Blokzijl",
	"http://www.trendy-hotels.com/city/De Koog - Texel",
	"http://www.trendy-hotels.com/city/Dordrecht", 
	"http://www.trendy-hotels.com/city/Ellecom",
	"http://www.trendy-hotels.com/city/Hengelo",
	"http://www.trendy-hotels.com/city/Maastricht",
	"http://www.trendy-hotels.com/city/Noordwijk Aan Zee",
	"http://www.trendy-hotels.com/city/Otterlo",
	"http://www.trendy-hotels.com/city/Rijswijk",
	"http://www.trendy-hotels.com/city/Rotterdam",
	"http://www.trendy-hotels.com/city/De Koog - Texel",
	"http://www.trendy-hotels.com/city/The Hague",
	"http://www.trendy-hotels.com/city/Tubbergen",
	"http://www.trendy-hotels.com/city/Waalwijk"); 

url_array[10] = new Array("#",
 	"http://www.trendy-hotels.com/city/Warsaw"); 

url_array[11] = new Array("#",
 	"http://www.trendy-hotels.com/city/Barcelona",
	"http://www.trendy-hotels.com/city/Madrid",
	"http://www.trendy-hotels.com/city/Valencia"); 

url_array[12] = new Array("#",
 	"http://www.trendy-hotels.com/city/Stockholm"); 

url_array[13] = new Array("#",
 	"http://www.trendy-hotels.com/city/Geneva",
	"http://www.trendy-hotels.com/city/Zurich"); 

url_array[14] = new Array("#",
	"http://www.trendy-hotels.com/city/Leeds",
	"http://www.trendy-hotels.com/city/London");




function switch_select()

{
  for (loop = window.document.form_1.select_2.options.length-1; loop > 0; loop--)
  {
    window.document.form_1.select_2.options[loop] = null;
  }
  
  for (loop = 0; loop < option_array[window.document.form_1.select_1.selectedIndex].length; loop++)
  {
    window.document.form_1.select_2.options[loop] = new Option(option_array[window.document.form_1.select_1.selectedIndex][loop]);
  }
  
  window.document.form_1.select_2.selectedIndex = 0;
}
  
function switch_text()

{
  window.document.form_1.textarea_1.value = text_array[window.document.form_1.select_1.selectedIndex][window.document.form_1.select_2.selectedIndex];
}

function box()

{
  if (window.document.form_1.select_2.selectedIndex == 0)
  {
    alert("Select a city first to continue.");
  } else {
    if (open_in_newwindow==1)
    window.open(url_array[window.document.form_1.select_1.selectedIndex][window.document.form_1.select_2.selectedIndex],"_blank");
    else
    window.location=url_array[window.document.form_1.select_1.selectedIndex][window.document.form_1.select_2.selectedIndex]
  }
}

function set_orig()

{
  window.document.form_1.select_1.selectedIndex = 0;
  window.document.form_1.select_2.selectedIndex = 0;
}

window.onload=set_orig

// -->

<!-- einde land en plaats selectie script --> 