

		 
	function setcontent(objid1,objidChild1,objidChild2,objidChild3) {
          if (document.layers) {
              
          }
          else if (document.getElementById) {
      
			bodyText = document.getElementById(objid1);
			Childa = document.getElementById(objidChild1);
			Childb = document.getElementById(objidChild2);
			Childc = document.getElementById(objidChild3);


				//alert(Bodytext.offsetHeight);
				
				if ( bodyText.offsetHeight < Childa.offsetHeight) {
			
					 bodyText.style.height = Childa.offsetHeight +  "px";
				
										
				}
				
				if ( bodyText.offsetHeight < Childb.offsetHeight) {
			
					 bodyText.style.height = Childb.offsetHeight +  "px";
				
										
				}
				
				if ( bodyText.offsetHeight < Childc.offsetHeight) {
			
					 bodyText.style.height = Childc.offsetHeight +  "px";
				
										
				}
				
				
												
    	         
         		}
				
     	 } 	 
		 
		 
		function setheight(objid1,objidChild1) {
          if (document.layers) {
              
          }
          else if (document.getElementById) {
      
			bodyText = document.getElementById(objid1);
			Childa = document.getElementById(objidChild1);
			


				//alert(Bodytext.offsetHeight);
				
				if ( bodyText.offsetHeight < Childa.offsetHeight) {
			
					 bodyText.style.height = Childa.offsetHeight +  "px";
				
										
				}
				
				if ( bodyText.offsetHeight > Childa.offsetHeight) {
			
					 Childa.style.height = bodyText.offsetHeight +  "px";
				
										
				}
				
				
				
		  }
				
     	 } 	 
		 
		 function highlight(theDiv) {
			 
			 bodyText = document.getElementById(theDiv);
			 
			 bodyText.style.color = "#000000";
			 
		 }
		 
		 function lowlight(theDiv) {
			 
			 bodyText = document.getElementById(theDiv);
			 
			 bodyText.style.color = "#cccccc";
			 
		 }
		 
		