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%\" class=\"propDetails\">";
	sMessageFormat += "<tr>";
	sMessageFormat += "<td class=\"PropCartTitle\">&nbsp;"+title+"</td>";
	sMessageFormat += "</tr>";
	sMessageFormat += "<tr>";
	sMessageFormat += "<td class=\"PropertyCartMessageText\" valign=\"top\">"+message+"</td>";
	sMessageFormat += "</tr>";
	sMessageFormat += "</table>";
	sMessageFormat += "</div>";
	document.getElementById("PropertyCartWebPartMessageContainer").innerHTML = sMessageFormat;
	document.getElementById("PropertyCartMessage").style.display = "block";
	setTimeout("__EstateWeb_Objects_PropertyCartManager_HideObject('PropertyCartWebPartMessageContainer')", 2500);
}

function __EstateWeb_Objects_PropertyCartManager_HideObject(ID){
	document.getElementById(ID).style.display = "none";// = "hidden";
}