var newWindow;

function PrintContents()
{
	window.print();
}

function OpenListing(windowURL) {
	newWindow = window.open(windowURL,'Window','resizable=yes,scrollbars=yes,width=670,height=560');
	newWindow.moveTo(30,5);
	newWindow.focus();
	return false;
}

function ContactAbout(windowURL) {
	newWindow = window.open(windowURL,'Details','scrollbars=yes,resizable=yes,width=600,height=480');
	//newWindow.moveTo(250,45);
	newWindow.focus();
	return false;
}

function EmailAFriend(windowURL) {
	newWindow = window.open(windowURL,'Details','scrollbars=yes,resizable=yes,width=600,height=480');
	newWindow.moveTo(250,45);
	newWindow.focus();
	return false;
}

function PhotoGallery(windowURL) {
	newWindow = window.open(windowURL,'Details','scrollbars=yes,resizable=yes,width=520,height=520');
	newWindow.moveTo(60,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 ShowMap(windowURL) {
	newWindow = window.open(windowURL,'','width=550,height=450,left=100,top=20,location=no,status=no,toolbar=no,menubar=no,scrollbars=no,resizable=no');
	return false;
}

function ShowMarketReport(windowURL) {
	newWindow = window.open(windowURL,'','width=630,height=630,left=130,top=20,location=no,status=no,toolbar=no,menubar=no,scrollbars=no,resizable=no');
	return false;
}