/****************************************************************************
*
* displaySetter.js 
*
*  Version 1.0 - September 23, 2008
*
*     This Javascript file includes function(s) to change the display setting of 
*  objects on a page
*
*  James Gass, SAIC

*
****************************************************************************/
//  Simply set the CSS display property for element with specified ID value

function setDisplay(objectId, state) {

   var targetobj = document.getElementById(objectId);

       targetobj.style.display = state;
}

/**************************************************************************/	
