function PropertyIcons_OnSave(){
	PropertyCart.RefreshInlineView();
}

var PropertyPrintManager;

function PropertyIcons_OnPrint(ID){
	PropertyPrintManager = new EstateWeb_Objects_PropertyPrintManager();
	PropertyPrintManager.PropertyReference = ID;
	PropertyPrintManager.ClassName = "printContainer";
	PropertyPrintManager.Container = "inner-container";
	PropertyPrintManager.CallbackFunction = "PropertyIcons_OnPrint_Callback";
	PropertyPrintManager.Open();
}

function PropertyIcons_OnPrint_Callback(){
	PropertyPrintManager.Close();
}

var PropertyCart = new EstateWeb_Objects_PropertyCartManager();


