<!--
if (document.images)
{
	pic1 = new Image(322, 52); 
	pic1.src ="/images_site/button_add_over_nl.jpg"; 

	pic2 = new Image(322, 52); 
	pic2.src ="/images_site/button_search_over_nl.jpg"; 

	pic3 = new Image(322, 52); 
	pic3.src ="/images_site/button_search_over_en.jpg"; 

	pic4 = new Image(322, 52); 
	pic4.src ="/images_site/button_search_over_en.jpg"; 
}

function gotoRoom(city)
{
	if (city != '')
	{
		document.location.href='/kamers-' + city + '.html';
	}
}

function openPopUp(path, windowTitle, windowWidth, windowHeight){
	var picTitle = null;
	var imgCount = 0;
	var imgWinName = "popImg";
	picTitle = windowTitle;
	imgWinName = "popImg" + imgCount++; //unique name for each pop-up window
	popImg = window.open(path, imgWinName, "toolbar=no,scrollbars=yes,resizable=no,width="
           + (parseInt(windowWidth)+20)  + ",height="
           + (parseInt(windowHeight)+20));
	// Move to lefttop of browser
	popImg.moveTo(window.screenWidth, window.screenHeight);
}

function ChangeRoomchange()
{
	if (document.getElementById('roomchange').style.display == '')
	{
		document.getElementById('roomchange').style.display = 'none';
	}
	else
	{
		document.getElementById('roomchange').style.display = '';
	}	
}

function HideRoomChange()
{
	document.getElementById('roomchange').style.display = 'none';
}

function ShowRoomChange()
{
	document.getElementById('roomchange').style.display = '';
}

function changePeriod()
{
	if (document.getElementById('period').style.display == '')
	{
		document.getElementById('period').style.display = 'none';
	}
	else
	{
		document.getElementById('period').style.display = '';
	}	
}

function hidePeriod()
{
	document.getElementById('period').style.display = 'none';
}

function showPeriod()
{
	document.getElementById('period').style.display = '';
}
//-->