function SetDisplayCSS()
{
	var obj = document.getElementById('contactlist');
	if (obj.style.display =="block"){
		obj.style.display='none';	
	}
	else{
		obj.style.display='block';	
	}

	return true;
	
}


