function ShowHotel()
{
	valuetext = document.getElementById("hotelid").value;
	hotelsplit = valuetext.split("#");
	hotelid = hotelsplit[0];
	hotelname = hotelsplit[1];
	
	window.location = "http://www.nh-mice.de/hotel.php?hotelid="+hotelid;
}

function ShowCountry()
{
	valuetext = document.getElementById("countryid").value;
		
	window.location = "http://www.nh-mice.de/hotel.php?country=" + valuetext;
}

$().ready(function()
{
   $(".zebra tr:nth-child(odd)").addClass("zebraodd"); 
});
