function show(div) {
	document.getElementById('details').style.display = 'none';
	document.getElementById('accommodation').style.display = 'none';
	document.getElementById('activities').style.display = 'none';
	
	document.getElementById(div).style.display = 'block';
	
	var thumbnail = document.getElementById('thumb_img');
	
	switch (div) {
		
		case 'details':
			thumbnail.src = details_image.src;
			break;
		case 'accommodation':
			thumbnail.src = accommodation_image.src;
			break;
		case 'activities':
			thumbnail.src = activities_image.src;
			break;
		default:
			thumbnail.src = details_image.src;
			
	}

	event.returnValue = false;
}

function showImages(id) {
	var url = window.location.href;
	var i = url.lastIndexOf('/');
	if (i >= 0) url = url.substring(0, i);
	url += '/popup/images.html?id=' + id;
	
	// alert(url);
	
	window.open(url, 'popup' + id, 'left=50,top=50,width=600,height=450,toolbar=no,status=no,scrollbars=no,resizable=no,menubar=no,location=no', false);

	event.returnValue = false;
}

function showLocation(id, name, town, area) {
	var url = window.location.href;
	var i = url.lastIndexOf('/');
	if (i >= 0) url = url.substring(0, i);
	url += '/popup/location.html?id=' + id +'&name=' + name +'&town=' + town +'&area=' + area;
	
	// alert(url);
	
	window.open(url, 'popup' + id, 'left=50,top=50,width=600,height=675,toolbar=no,status=no,scrollbars=no,resizable=no,menubar=no,location=no', false);

	event.returnValue = false;
}