<!--//

// Rollover functions
function rollon(img1)
{
  if (document.images) 
  {
    document.images[img1].src = '/firehead/images/'+img1+'1.gif';
  }
}

function rolloff(img1)
{
  if (document.images) 
  {
    blip('');
    document.images[img1].src = '/firehead/images/'+img1+'0.gif';
  }
}

// Window status function
function blip(txt)
{
  window.status = txt;
}

// Date function
function dispDate()
{
  currDate = new Date();
  month = new Array('January','February','March','April','May','June','July','August','September','October','November');
  document.write(' '+month[currDate.getMonth()]+' '+currDate.getDate()+', 19'+currDate.getYear());
}

// Move to top
if (window != window.top)
  top.location.href = location.href;

//-->