function Expand(obj,Container){
	if(document.getElementById(Container).style.display){
		if(document.getElementById(Container).style.display == "none" ){
			document.getElementById(Container).style.display = "block";
		}
	}
}
function Collapse(obj,Container,Request){
	if(document.getElementById(Container).style.display == "block" ){
		if(Request=="hassanna" || Request=="hady" || Request=="about")
			document.getElementById(Container).style.display = "block";
		else
			document.getElementById(Container).style.display = "none";
	}
}
function CollapseMLS(obj,Container,Request){
	if(document.getElementById(Container).style.display == "block" ){
		if(Request=="mls" || Request=="areaname" || Request=="mlspropertydetail")
			document.getElementById(Container).style.display = "block";
		else
			document.getElementById(Container).style.display = "none";
	}
}