function toggledisplay(objid){
	var obj = document.getElementById(objid);
	obj.style.display = obj.style.display != 'block' ? 'block' : 'none';
}