function PropertyIcons_OnSave(){
	location.replace(location.href);
}

var PropertyPrintManager;

function PropertyIcons_OnPrint(ID){
	PropertyPrintManager = new EstateWeb_Objects_PropertyPrintManager();
	PropertyPrintManager.PropertyReference = ID;
	PropertyPrintManager.ClassName = "printmanager-container";
	PropertyPrintManager.Container = "resultsContainer";
	PropertyPrintManager.CallbackFunction = "PropertyIcons_OnPrint_Callback";
	PropertyPrintManager.Open();
}

function PropertyIcons_OnPrint_Callback(){
	PropertyPrintManager.Close();
}

var PropertyCartManager = new EstateWeb_Objects_PropertyCartManager();
PropertyCartManager.GenerateOutputContainer();


