<!--
//*****************************************
// Blending Image Slide Show Script- 
// © Dynamic Drive (www.dynamicdrive.com)
// For full source code, visit http://www.dynamicdrive.com/
//*****************************************
//specify interval between slide (in mili seconds)
var slidespeed=3000
//specify images
var slideimages=new Array("http://delstartech.thomasnet.com/ImgCustom/1002/delstar-plastic-mesh-filter-main.jpg","http://delstartech.thomasnet.com/ImgCustom/1002/delstar-plastic-mesh-filter-naltex.jpg","http://delstartech.thomasnet.com/ImgCustom/1002/delstar-plastic-mesh-filter-delnet.jpg","http://delstartech.thomasnet.com/ImgCustom/1002/delstar-plastic-mesh-filter-stratex.jpg","http://delstartech.thomasnet.com/ImgCustom/1002/delstar-plastic-mesh-filter-coretec.jpg")
var ie=document.all

var imageholder=new Array()
for (i=0;i<slideimages.length;i++){
imageholder[i]=new Image()
imageholder[i].src=slideimages[i]
}

// This is for the href element of the rotating image.  It is not in use in this site.
//specify corresponding links
var slidelinks=new Array("#","#","#","#","#","#")
var newwindow=0 //open links in new window? 1=yes, 0=no
function gotoshow(){
if (newwindow)
window.open(slidelinks[whichlink])
else
window.location=slidelinks[whichlink]
}
//-->
