var newWindow;

function PrintContents()
{
	window.print();
}

function ContactAbout(windowURL) {
	newWindow = window.open(windowURL,'Details','resizable=yes,width=400,height=480');
	newWindow.moveTo(250,45);
	newWindow.focus();
	return false;
}

function EmailAFriend(windowURL) {
	newWindow = window.open(windowURL,'Details','resizable=yes,width=350,height=400');
	newWindow.moveTo(250,45);
	newWindow.focus();
	return false;
}

function EnlargePicture(windowURL) {
	newWindow = window.open(windowURL,'Details','resizable=yes,width=380,height=400');
	newWindow.moveTo(100,40);
	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 PhotoGallery(windowURL) {
	newWindow = window.open(windowURL,'Gallery','resizable=yes,width=550,height=500');
	newWindow.moveTo(40,20);
	newWindow.focus();
	return false;
}
