function addpropertylist(method, id, purchase_type, name, show_message, image)
{
        id = id.replace (",b",'');
        id = id.replace (",r",'');

	name = name.split (",");
        var newlocation = '../panes/pane_property_list.php?method=' + method + '&property=' + id + ',' + purchase_type +  "&image=" + escape(image) + "&name=" + escape(name[0]) + "&sort=" + purchase_type;
        top.frames.viewmylist.document.location=newlocation;
      //  top.document.getElementById("viewmylist").document.location=newlocation;
}

function deleteproperty (id, purchase_type)
{
        var newlocation = '../panes/pane_property_list.php?method=delete&property=' + id + '&sort=' + purchase_type + "&refresh=briefcase";
        top.frames.viewmylist.document.location=newlocation;
	

}

