<!--
if (document.images) 
        {
        //Preload All Images
          img_prod_turbine=new Image(100,100);
          img_prod_thermal=new Image(100,100);
          img_prod_industrial=new Image(100,100);
          img_prod_superalloy=new Image(100,100);
          img_prod_turbine.src='/img/ban/prod-turbine-sm.jpg';
          img_prod_thermal.src='/img/ban/prod-thermal-sm.jpg';
          img_prod_industrial.src='/img/ban/prod-industrial-sm.jpg';
          img_prod_superalloy.src='/img/ban/prod-superalloy-sm.jpg';
          img_prod_turbine_h=new Image(100,100);
          img_prod_thermal_h=new Image(100,100);
          img_prod_industrial_h=new Image(100,100);
          img_prod_superalloy_h=new Image(100,100);
          img_prod_turbine_h.src='/img/ban/prod-turbine-smh.jpg';
          img_prod_thermal_h.src='/img/ban/prod-thermal-smh.jpg';
          img_prod_industrial_h.src='/img/ban/prod-industrial-smh.jpg';
          img_prod_superalloy_h.src='/img/ban/prod-superalloy-smh.jpg';
        }
        
//Function to swap images
function ChangeImage(imagename,objectsrc,linktext)
        {
		  document.images[imagename].src=eval(objectsrc+'.src');
		  
		}
//Function to swap images and Display Tip Text
var currentDetail;
var currentRow;
function showDetail(detailID, rowID) {
		  		  
		  //Display Selected Link Tip Text and Hide other text
		  if (currentDetail != null) {
         		hideDetail();
      		}
		  if (detailID != 'none') {
      		currentDetail = detailID;
      		currentRow = rowID;
      		document.getElementById(currentDetail + currentRow).style.visibility = 'visible';
      		document.getElementById(currentDetail + currentRow).style.display = '';
      		//document.getElementById(currentDetail + currentRow).style.zIndex = 1;
         	}

		}
		
function hideDetail() {
      	//hide previously selected link
      	
      		document.getElementById(currentDetail + currentRow).style.visibility = 'hidden';
      		document.getElementById(currentDetail + currentRow).style.display = 'none';
      		//document.getElementById(currentDetail + currentRow).style.zIndex = -1;
   	}	
   	
 		
//-->
        
