<!--

// shows specified image in a pop up window
function remember_prop(prop_ref)
{
	var win_width = 300;
	var win_height = 300;
	var win_decs = "directories=0, location=0, menubar=0, resizeable=0, scrollbars=1, status=0, toolbar=0, left=5, top=5, ";
	
	
	if(win_height > (window.screen.height - 25))
	{
		win_height = (window.screen.height - 25);
	}

	if(win_width > (window.screen.width - 25))
	{
		win_width = (window.screen.width - 25);
	}
	window.open("/remember.php?property_ref=" + (prop_ref), "hires", win_decs + "width=" + win_width + ", height=" + win_height);
	
}



//-->
