  var color = '';

  var haloInColor = '#FF0000';
//lighter yellow
  var haloOutColor = '#FFFFFF';
  //now black, was 
  //slate or cool gray

  function over(outer,id) {
if (document.all) {
           window.color = window.document.all[id].style.background;
           window.document.all[id].style.background = '#D8D8D8';
		   //This controls (among other things) the background color of the 
		   //roll-over links on the home index page of www.bellhelicopter.com
       }
}

  function out(outer,id) {
if (document.all) {
          window.document.all[id].style.background = window.color;
	 	  window.document.all[id].style.background = 'url(/images/nav_bg.gif)';
		   //This controls the background color of the table cells at the top of each page via global_header.cfm
		   //on www.bellhelicopter.com
		  //window.document.all[id].style.background = '#000000';
	 }
}

  function halOver(id) {
if (document.all) {

           window.document.all[id].style.borderColor = haloInColor;
       }
}

  function halOut(id) {
if (document.all) {
	 	  window.document.all[id].style.borderColor = haloOutColor;
	
	 }
}

  function chicPop() {
  
  var chicWin = null;

// some time later:

if (chicWin && chicWin.closed) {
    // do nothing
}
else {
  chicWin=window.open('','chicPop','toolbar=no,resizable=yes,scrollbars=auto,width=600,height=400');
 } 
 }