function verify(id) {
	var answer="";
	var answer=confirm("Are you sure you want to delete this property?");
	if ( answer ) {
		location.href="tx_property.php?action=delete&id="+id;
	}
}

function verifyI(id) {
	var answer="";
	var answer=confirm("Are you sure you want to delete this user and ALL their properties?");
	if ( answer ) {
		location.href="tx_useredit.php?act=del&id="+id;
	}
}