function openWindow(fileName, title) {
	openWindow(fileName, title, 600, 400);
}

function openWindow(fileName, title, height, width) {
	window.open(fileName, title, "height=" + height + ",width=" + width + ",resize=yes,scrollbars=yes,menubar=no,status=no,toolbar=no,location=no");
}

function openDirectionsWindow(address) {
	openWindow("http://maps.google.com?q=" + address, "_directions", 600, 1000);
}
	
function jumpToBedrooms() {
	var sel = document.search.selBedrooms.selectedIndex;
	var numBeds = document.search.selBedrooms[sel].value
	window.location.hash = numBeds + "bedrooms"
}	

