function bcolor(bcol,d_name)
{
if (document.all)
{
 var thestyle= eval ('document.all.'+d_name+'.style');
 thestyle.backgroundColor=bcol;
 }
}

function bcolorBG(bcol,bcol2,d_name,d_name2)
{
if (document.all)
{
 var thestyle= eval ('document.all.'+d_name+'.style');
 thestyle.backgroundColor=bcol;
  var thestyle2= eval ('document.all.'+d_name2+'.style');
 thestyle2.backgroundColor=bcol2;
 }
}

function adjustIFrameSize (iframeWindow) {
  if (iframeWindow.document.height) {
    var iframeElement = parent.document.getElementById
(iframeWindow.name);
    iframeElement.style.height = iframeWindow.document.height + 'px';
   
  }
  else if (document.all) {
    var iframeElement = parent.document.all[iframeWindow.name];
    if (iframeWindow.document.compatMode &&
        iframeWindow.document.compatMode != 'BackCompat') 
    {
      iframeElement.style.height = 
iframeWindow.document.documentElement.scrollHeight + 0 + 'px';
      
    }
    else {
      iframeElement.style.height = 
iframeWindow.document.body.scrollHeight + 0 + 'px';
      
    }
  }
}

function ViewCrossReference (selSelectObject)
{
   if (selSelectObject.options[selSelectObject.selectedIndex].value != "")
   { 
     location.href=selSelectObject.options[selSelectObject.selectedIndex].value
   }
}	

function newWin(I,winn,W,H,T,L){
		x=window.open(I,winn,'width='+W+',height='+H+',top='+T+',left='+L+',scrollbars=yes,toolbar=no')
		}
		
		
function openIt(FAQ) {
showIt = document.all(FAQ);
if (showIt.style.display == "none") {
showIt.style.display = ""
} else {
showIt.style.display = "none"
}
}
		
