/***********************************************
* Image Thumbnail Viewer II script- &copy; Dynamic Drive DHTML code library (www.dynamicdrive.com)
* Visit http://www.dynamicDrive.com for hundreds of DHTML scripts
* This notice must stay intact for legal use
* Modified here to accept external text file as well as images
* Modified for optional captions, read all comments in top
* of script and in HTML code below.
* Modifications &copy; John Davenport Scheuer - jscheuer1TAKETHISOUTTOUSEEMAIL@comcast.net
***********************************************/
/*
IMPORTANT NOTE - In most cases specifying only a small external file for display
will yield the best results - IMPORTANT NOTE
Specify image/text file paths and optional link (set link to "" for no link)
set third parameter to "i" for image file, "t" for text file:                       */
var dynimages=new Array()
dynimages[0]=["gallery/images/01.jpg", "", "i"]
dynimages[1]=["gallery/images/02.jpg", "", "i"]
dynimages[2]=["gallery/images/03.jpg", "", "i"]
dynimages[3]=["gallery/images/04.jpg", "", "i"]
dynimages[4]=["gallery/images/05.jpg", "", "i"]
dynimages[5]=["gallery/images/06.jpg", "", "i"]
dynimages[6]=["gallery/images/07.jpg", "", "i"]
dynimages[7]=["gallery/images/08.jpg", "", "i"]
dynimages[8]=["gallery/images/09.jpg", "", "i"]
dynimages[9]=["gallery/images/10.jpg", "", "i"]
dynimages[10]=["gallery/images/11.jpg", "", "i"]
dynimages[11]=["gallery/images/12.jpg", "", "i"]
dynimages[12]=["gallery/images/13.jpg", "", "i"]
dynimages[13]=["gallery/images/14.jpg", "", "i"]
dynimages[14]=["gallery/images/15.jpg", "", "i"]
dynimages[15]=["gallery/images/16.jpg", "", "i"]

//dynimages[3]=["gallery/video/testing.html", "", "t"]

//Set scrolling for text content if text content used("yes" or "no"):
var scrolltext="no"

//Preload images ("yes" or "no"):
var preloadimg="yes"

//Set optional link target to be added to all images with a link:
var optlinktarget=""

//Set image border width
var imgborderwidth=0

//Optionally, change 1.0 and 0.7 below to affect Wipe gradient size and duration in seconds in IE5.5+:
var filterstring="progid:DXImageTransform.Microsoft.GradientWipe(GradientSize=1.0 Duration=0.7)"

///////No need to edit beyond here/////

if (preloadimg=="yes"){
for (x=0; x<dynimages.length; x++){
if (dynimages[x][2]=='i'){
var myimage=new Image()
myimage.src=dynimages[x][0]
}
}
}

function returnimgcode(theimg){
var imghtml=""
if (theimg[1]!="")
imghtml='<a href="'+theimg[1]+'" target="'+optlinktarget+'">'
if (theimg[2]=="i")
imghtml+='<img src="'+theimg[0]+'" border="'+imgborderwidth+'">'
if (theimg[2]=="t"){
scrollHeight=(document.getElementById)?document.getElementById('dynloadarea').style.height:document.all('dynloadarea').style.height
scrollWidth=(document.getElementById)?document.getElementById('dynloadarea').style.width:document.all('dynloadarea').style.width
imghtml+='<iframe src="'+theimg[0]+'" frameborder="'+imgborderwidth+'" height="'+scrollHeight+'" width="'+scrollWidth+'" scrolling="'+scrolltext+'"></iframe>'
}
if (theimg[1]!="")
imghtml+='</a>'
return imghtml
}

function modifyimage(loadarea, imgindex){
get_cap('');
if (document.getElementById){
var imgobj=document.getElementById(loadarea)
if (imgobj.filters && window.createPopup){
imgobj.style.filter=filterstring
imgobj.filters[0].Apply()
}
imgobj.innerHTML=returnimgcode(dynimages[imgindex])
if (imgobj.filters && window.createPopup)
imgobj.filters[0].Play()
return false
}
}

function get_cap(cap){
if (document.getElementById){
document.getElementById('caploadarea').innerHTML=cap;}
else if (document.all){
document.all('caploadarea').innerHTML=cap;}
else{
return;}
}