function getMenuHeight(calledFrom){

	// Set divHeight back to zero...
	var divHeight = 0;
	
	// Get the DIV elements within the calledFrom element...
	var tagObj = document.getElementById(calledFrom).getElementsByTagName('div');
	
	// Loop through and check if they are "the droids we are looking for", and add height accordingly...
	for(i=0;i<tagObj.length;i++){
		
		switch(tagObj[i].className){
			case "txtLink":
				divHeight += 20;
				break; 

		}
 
	}
	
	// Find out if there is an iFrame inside the DIV...
	var iFrameObj = document.getElementById(calledFrom).getElementsByTagName('iframe');
	
	// Add the bottom padding as well, if there are any items displayed...
	if(divHeight > 0) divHeight += 9;
	
	
	if(iFrameObj.length > 0){
		iFrameObj[0].style.height = divHeight + "px";
	}
	
	// Return the height value...
	return divHeight;

}
