<!-- javascript for pop up on sales and rentals pages // -->
<!--
function openWindow(address, name, width, height){
			window.name = "main";
			var features = "width=" + width + ",height=" + height + ",";
			features += "resizable=yes, scrollbars=no, status=no, ";
			features += "menubar=no, toolbar=no, location=no, directories=no";
			var newWindow = window.open(address, name, features);
			newWindow.focus();
}
-->