<!--
function break_url(){
	var s = location.href;
	s = s.split("?");
	if(s[1]){
		var s1 = s[1];
		s1 = s1.split("=");
		s = s1[0];
		s1 = s1[1];
		if(s=="ref"){
			s = "I would like further information on the following rental property, reference (" + s1 + ")";
			document.forms[0].property_ref.value = s1;
			document.forms[0].Question.value = s;
		}
	}
}
//-->
