// JavaScript Document

function showPhoto(n) {
	width = 1022
	height = 465
	xl = (screen.availWidth/2)-(width/2)
	tt = (screen.availHeight/2)-(height/2)
	var showPhoto = window.open('showMedia.php?id='+n,'showPhotoMedia'+n, 'toolbar=no,scrolling=auto,resizable=yes,location=no,directories=no,status=no,scrollbars=yes,menubar=no,width='+width+',height='+height+',left='+xl+',top='+tt);
	showPhoto.focus()

}

function photoWindow(source, imageWidth, imageHeight){
	width = imageWidth
	height = imageHeight
	xl = (screen.availWidth/2)-(width/2)
	tt = (screen.availHeight/2)-(height/2)
	picture=window.open(source,'photo','toolbar=no,scrolling=no,resizable=no,location=no,directories=no,status=no,scrollbars=no,menubar=no,width='+width+',height='+height+',left='+xl+',top='+tt);
	picture.focus()
}

function showComments() {
	document.getElementById('comments-form').style.display = 'block';
	document.getElementById('comments-link').style.display = 'none';
}
function hideComments() {
	document.getElementById('comments-form').style.display = 'none';
	document.getElementById('comments-link').style.display = 'block';
}
function showBookingsForm() {
	document.getElementById('bookings-form-content').style.display = 'block';
	document.getElementById('bookings-form-link').style.display = 'none';
}