var slidespeed=3000

//de foto`s die getoond worden
var slideimages=new Array("honda/foto1.jpg","honda/foto2.jpg","honda/foto3.jpg","honda/foto4.jpg","honda/foto5.jpg","honda/foto6.jpg")

var imageholder=new Array()
var ie55=window.createPopup

for (i=0;i<slideimages.length;i++){
	imageholder[i]=new Image()
	imageholder[i].src=slideimages[i]
}

var whichimage=0
var pixeldelay=1000

function slideit(){
	if (!document.images) 
	return
	if (ie55) document.images.slide.filters[0].apply()
	document.images.slide.src=imageholder[whichimage].src
	if (ie55) document.images.slide.filters[0].play()
	whichimage=(whichimage<slideimages.length-1)? whichimage+1 : 0
	setTimeout("slideit()",slidespeed+pixeldelay)

}

function popimg(imagesrc,winwidth,winheight,strTitle){
	winwidth += 24;
	winheight += 116;

	imagesrc = imagesrc.replace(".jpg","g.jpg");

	var wLook='width='+winwidth+',height='+winheight+',resizable=no,scrollbars=no,toolbar=no,titlebar=no,status=no,menubar=no'
	popwin=window.open("","",wLook)
	popwin.document.open()
	popwin.document.write('<HTML><HEAD><LINK rel=stylesheet type=text/css href=body.css><TITLE>'+strTitle+'</TITLE>')
	popwin.document.write('</HEAD><BODY class=foto leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>')
	popwin.document.write('<TABLE width=100% border=0 cellpadding=0 cellspacing=0><TR class=fototop>')
	popwin.document.write('<TD align=center valign=middle>&nbsp;</TD></TR>')
	popwin.document.write('<TR class=fotomiddle><TD align=center><IMG src=blank.gif width=3 height=18><BR>')
	popwin.document.write('<img src="'+imagesrc+'"><BR><IMG src=blank.gif width=3 height=18></TD></TR>')
	popwin.document.write('<TR valign=middle class=fotobottom><TD align=center>')
	popwin.document.write('<B>'+strTitle+'</B></TD></TR></TABLE></BODY>')
	popwin.document.close()
}