// bookmark this page
function addBookmark()
{
	var bookmarkurl = window.location;
	var bookmarktitle = document.title;
	if (document.all)
		window.external.AddFavorite(bookmarkurl,bookmarktitle)
}


// print page
function printPage()
{
	window.print();
}


// button links
function goToBookingEngine()
{ 
	window.location = 'https://portals.uk.rezlynx.net/pagpportal/wfrmpakquery.aspx?siteid=PAGVENLAW'; 
}


// gallery
function showPic(whichpic)
{
	if(document.getElementById)
	{
		var largepic = document.getElementById('placeholder');
		largepic.src = whichpic.href;
		
		if (whichpic.title) {
			largepic.alt = whichpic.title;
			document.getElementById('desc').childNodes[0].nodeValue = whichpic.title;
		}
		else
		{
			largepic.alt = whichpic.childNodes[0].nodeValue;
			document.getElementById('desc').childNodes[0].nodeValue = whichpic.childNodes[0].nodeValue;
		}
		return false;
	}
	else
	{
		return true;
	}
}