function PropertyIcons_OnSave(){
	PropertyCart.RefreshInlineView();
}

var PropertyPrintManager;

function PropertyIcons_OnPrint(ID){
	PropertyPrintManager = new EstateWeb_Objects_PropertyPrintManager();
	PropertyPrintManager.PropertyReference = ID;
	PropertyPrintManager.ClassName = "printmanager-container";
	PropertyPrintManager.Container = "inner";
	PropertyPrintManager.CallbackFunction = "PropertyIcons_OnPrint_Callback";
	PropertyPrintManager.Open();
}

function PropertyIcons_OnPrint_Callback(){
	PropertyPrintManager.Close();
}

var PropertyCart = new EstateWeb_Objects_PropertyCartManager();


	function showTab(id){
		var frmContainer = document.getElementById("frmContainer");
		var summary = document.getElementById("pnlSummery");
		var floorplans = document.getElementById("floorplans");
		var pnlDetails = document.getElementById("pnlDetails");
		
		
		summary.style.display="none"
		floorplans.style.display="none"
		frmContainer.style.display="none"
		pnlDetails.style.display="none"
		
		switch(id)
		{
		case "_ctl1_CenterRegion_PropertyDetailsContainer__ctl0_cntrlPropertyIcons_summery":
			summary.style.display="block"
			pnlDetails.style.display="block"
			break    
		case "_ctl1_CenterRegion_PropertyDetailsContainer__ctl0_cntrlPropertyIcons_pnlFloorplans":
			frmContainer.width="100%"
			frmContainer.height="400px"
			frmContainer.style.display="block"
			frmContainer.src=rootURL + "/floorplan.aspx?id=" + propRef + "&loc=" + propLocationId;
			break    
		case "_ctl1_CenterRegion_PropertyDetailsContainer__ctl0_cntrlPropertyIcons_pnlGallery":
				frmContainer.src= rootURL + "/gallery.aspx?id=" + propRef;
				frmContainer.width="546px";
				frmContainer.height="410px"
				frmContainer.className="galleryFrameHolder"
				frmContainer.style.display="block"
				pnlDetails.style.display="block"
			break    
		case "_ctl1_CenterRegion_PropertyDetailsContainer__ctl0_cntrlPropertyIcons_pnlMap":
			frmContainer.src= rootURL + "/ViewPropertyMap.aspx?id=" + propRef;
			frmContainer.width="720px;"
			frmContainer.height="509px"
			frmContainer.style.display="block"
			break    
		case "_ctl1_CenterRegion_PropertyDetailsContainer__ctl0_cntrlPropertyIcons_pnlPrint":
			frmContainer.src= rootURL + "/ViewPropertyPrint.aspx?ID=" + propRef;
			frmContainer.width="100%"
			frmContainer.style.display="block"
			break    
		case "_ctl1_CenterRegion_PropertyDetailsContainer__ctl0_cntrlPropertyIcons_pnlArrangeVieweing":
			frmContainer.src= rootURL + "/ArrangeViewing.aspx?ID=" + propRef;
			frmContainer.width="100%"
			frmContainer.height="400px"
			frmContainer.style.display="block"
			break    
		case "_ctl1_CenterRegion_PropertyDetailsContainer__ctl0_cntrlPropertyIcons_pnlFloorplans":
			frmContainer.src= rootURL + "/gallery.aspx?id=" + propRef;
			frmContainer.width="507px";
			frmContainer.style.display="block"
			break    
		}

		}
