/*
function showElement(elmID,objToShow){
	if(browserName == "ie"){
		if(!objToShow){
			for( i = 0; i < document.all.tags( elmID ).length; i++ ){
	
				obj = document.all.tags( elmID )[i];
	
				if( !obj || !obj.offsetParent ){
	
					continue;
	
				}
				obj.style.visibility = "";
			}
		}else{
			obj = MM_findObj(objToShow);
			obj.style.visibility = "";
		}
	}
}
*/


function hideSpecificElements(elmID,elmArray){

      if(browserName == "ie"){
		for(i=0;i<elmArray.length;i++ ){
		  obj = MM_findObj(elmArray[i]);

			  if( !obj || !obj.offsetParent ){
				continue;
			  }

			  // Find the element's offsetTop and offsetLeft relative to the BODY tag.
	
			  objLeft   = obj.offsetLeft;
			  objTop    = obj.offsetTop;
			  objParent = obj.offsetParent;
			  
	
			  while( objParent.tagName.toUpperCase() != "BODY" & objParent.tagName.toUpperCase() != "HTML"){
				objLeft  += objParent.offsetLeft;
				objTop   += objParent.offsetTop;
				objParent = objParent.offsetParent;
			  }
	
			  objHeight = obj.offsetHeight;
			  objWidth = obj.offsetWidth;
	
			  obj.style.visibility = "hidden";
			  
		}
		
    }
}
