iBox.setPath('ibox/');
iBox.padding = 50;
iBox.fade_in_speed = 60;
iBox.inherit_frames = false;

<!--
var banners = new Array('drive-one.jpg','jefferson-county-ford.jpg');
var bannerhrefs = new Array('map1','map1');
// preload the images
var imgAry = new Array();
for (var i=0; i<banners.length; i++) { imgAry[i] = new Image; imgAry[i].src = banners[i]; }

i=0;
function swap2() {
document.banner.src = "images/"+banners[i];
document.banner.useMap = "#" + bannerhrefs[i]; i++;
if (i>=banners.length) i = 0;
timer = setTimeout("swap2()",4000);
}
function swap() {
document.banner.src = "images/"+banners[i];
document.banner.useMap = "#" + bannerhrefs[i]; i++;
if (i>=banners.length) i = 0;
clearTimeout(timer);
}
onload = swap2;
//-->


function openFrameless(urlPop, windowW, windowH){
// var windowW=700 // wide
// var windowH=600 // high
var windowX = (screen.width/2)-(windowW/2);
var windowY = (screen.height/2)-(windowH/2);
var title =  "Reuther Ford"
var autoclose = true
s = "width="+windowW+",height="+windowH;
var beIE = document.all?true:false

  if (beIE){
    NFW = window.open("","popFrameless","resizable=yes,fullscre,"+s)     
    NFW.blur()
    window.focus()       
    NFW.resizeTo(windowW,windowH)
    NFW.moveTo(windowX,windowY)
    var frameString=""+
"<html>"+
"<head>"+
"<title>"+title+"</title>"+
"</head>"+
"<frameset rows='*,0' framespacing=0 border=0 frameborder=0>"+
"<frame name='top' src='"+urlPop+"'>"+
"<frame name='bottom' src='about:blank' scrolling='no'>"+
"</frameset>"+
"</html>"
    NFW.document.open();
    NFW.document.write(frameString)
    NFW.document.close()
  } else {
    NFW=window.open(urlPop,"popFrameless","resizable=yes,"+s)
    NFW.blur()
    window.focus() 
    NFW.resizeTo(windowW,windowH)
    NFW.moveTo(windowX,windowY)
  }   
  NFW.focus()   
  if (autoclose){
    window.onunload = function(){NFW.close()}
  }
}