var newWindow;

function PrintContents()
{
	window.print();
}

function ContactAbout(windowURL) {
	newWindow = window.open(windowURL,'Details','resizable=yes,width=370,height=450');
	newWindow.moveTo(250,20);
	newWindow.focus();
	return false;
}

function EmailAFriend(windowURL) {
	newWindow = window.open(windowURL,'Details','resizable=yes,width=385,height=400');
	newWindow.moveTo(250,45);
	newWindow.focus();
	return false;
}

function ShowPhotoGallery(windowURL) {
	newWindow = window.open(windowURL,'Details','resizable=yes,width=520,height=630');
	newWindow.moveTo(200,30);
	newWindow.focus();
	return false;
}

function ShowTour(windowURL) {
	newWindow = window.open(windowURL,'','width=745,height=600,left=10,top=10,status=no,toolbar=no,menubar=no,scrollbars=yes,resizable=no');
	return false;
}

function ShowPrintFlyer(windowURL) {
	newWindow = window.open(windowURL,'','width=745,height=600,left=10,top=10,status=no,toolbar=no,menubar=no,scrollbars=yes,resizable=yes');
	return false;
}
