function EstateWeb_Objects_PropertyCartManager(){
	this.MessageBox = function(title,message) { __EstateWeb_Objects_PropertyCartManager(title,message) }
	this.MessageBoxTimer;
}

function __EstateWeb_Objects_PropertyCartManager(title,message){
	var sMessageFormat = "<div class\"PropertyCartBK\"></div><div id=\"PropertyCartMessage\" class=\"PropertyCartMessageContainer\" style=\"display:none\">";
	sMessageFormat += "<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"100%\">";
	sMessageFormat += "<tr>";
	sMessageFormat += "<td class=\"PropCartTitle blackBorder-left blackBorder-top blackBorder-right\">&nbsp;"+title+"</td>";
	sMessageFormat += "<td class=\"PropShadowSide\" rowspan=\"2\">&nbsp;</td>";
	sMessageFormat += "</tr>";
	sMessageFormat += "<tr>";
	sMessageFormat += "<td class=\"PropertyCartMessageText blackBorder-left blackBorder-right blackBorder-bottom propDetails\" valign=\"middle\">"+message+"</td>";
	sMessageFormat += "</tr>";
	sMessageFormat += "<tr>";
	sMessageFormat += "<td colspan=\"2\" class=\"PropShadowBottom\"></td>";
	sMessageFormat += "</table>";
	sMessageFormat += "</div>";
	HttpManager.Document.GetObject("PropertyCartWebPartMessageContainer").innerHTML = sMessageFormat;
	HttpManager.Document.GetObject("PropertyCartMessage").style.display = "block";
	setTimeout("__EstateWeb_Objects_PropertyCartManager_HideObject('PropertyCartWebPartMessageContainer')", 2500);
}

function __EstateWeb_Objects_PropertyCartManager_HideObject(ID){
	HttpManager.Document.GetObject(ID).style.display = "none";// = "hidden";
}