<!--
function imageWindow(title,picfile,w,h) {
  var x=20, y=20, s='no';
  var t='<head><title>'+title+'<\/title><\/head><body leftmargin=0 rightmargin=0 topmargin=0 bottommargin=0 bgcolor=silver onBlur="self.close()" onLoad="self.focus()"\>';
  if(title!="Kitty_Hawk")t=t+'<img src="'+picfile+'" border=0><\/body>';
  if(title=="Kitty_Hawk")t+="<a href='http://boss.streamos.com/wmedia/gecorp/geads/orvilleandwilbur_100k.wvx'><img src='pics/orville+wilbur.jpg' width='624' height='329' border=0 alt=' Click for GE TV commercial '></a>";
  if(title!='Texas_Counties') {
       if(screen.width < w) { w=screen.width-60; s='yes'; h=h+18} else x=(screen.width/2)-w/2;  
       if((screen.height-135) < h) { h=screen.height-135; s='yes'; w=w+19} else y=(screen.height/2)-h/2; 
       imgWin=window.open('','displayWindow','left='+x+', top='+y+', menubar=no, resizable=yes, scrollbars='+s+', status=no, width='+w+', height='+h);
  }
  else imgWin=window.open('','displayWindow','left='+0+', top='+0+', menubar=no, resizable=yes, scrollbars='+s+', status=no, width='+w+', height='+h)
  imgWin.document.write(t);
  //imgWin.document.close();
}
// -->