/*   -------------------------------------------------------------------------------
   myPopup Box - Javascript function to hide and make visible a popup box area
   that can contain text and images.
   -------------------------------------------------------------------------------
*/

function initPage(objectID, state){
    var object = document.getElementById(objectID);
	object.style.visibility = state;
}

/*
   ------------------------------------------------------------------------------
   End myPopup Box
   ------------------------------------------------------------------------------
*/ 