// 
//	module management
//  usHampton Securities, Inc.
//  Copyright 2007.  All Rights Reserved, Worldwide.
//

function toggle_collapse(objId) {

  obj = getElementById(objId);
  img = getElementById('collapseimg_' + objId);
  
  if (!obj) {
    return false;
  }
  
  if (obj.style.display == 'none') {
		obj.style.display = '';
		if (img)
		{
			img_re = new RegExp("_collapsed\\.gif$");
			img.src = img.src.replace(img_re, '.gif');
		}
  } else {
		obj.style.display = 'none';
		if (img)
		{
			img_re = new RegExp("\\.gif$");
			img.src = img.src.replace(img_re, '_collapsed.gif');
		} 
  }

  return false;
}