
function hiseshowdiv(id){
	var foo = document.getElementById(id);
	if(foo){
		obj = document.getElementById("pms_dashCollapsed");
		tbl = document.getElementById("tbldash");
		dtitle = document.getElementById("dashboardtitle");
		imgexpcol = document.getElementById("expcol");
		if(foo.style.display==''){
			foo.style.display='none';
			if(obj){obj.className = '';}
			if(tbl){tbl.className = "tbldash";}
			if(dtitle){dtitle.className = "dashboardtitle";}
			if(imgexpcol){imgexpcol.src="/Portals/_default/Skins/proma.Store/images/expand_button.gif";}
		}else{
			foo.style.display='';
			if(obj){obj.className = 'pms_dashCollapsed';}
			if(tbl){tbl.className = "";}
			if(dtitle){dtitle.className = "dashboardtitle_expand";}
			if(imgexpcol){imgexpcol.src="/Portals/_default/Skins/proma.Store/images/expand_button2.gif";}
		}
	}
	return false;
}

function  hideSearchBg(obj){
	obj.style.background = "none";
}