<!-- Begin
function getrandom()

{
//use eyebatch to resize 333x250 and ACDSee to rename imagex.jpg all desired random images
//for general index page and put in picfold folder
//picfold: where are these images includes the prefix name (usually "image")
//absolute or relative URL
//npic: how many images in the folder
picfold="../galn01/image";
npic=251;

ranNum= Math.round(Math.random()*(npic-1));
document.showslide.src = picfold + ranNum + ".jpg"  ;
//document.write('<a href="http://www.passage.info/photopost"><img name= "showslide" border=1 src= "' + picfold + ranNum + '.jpg"></a>');
}

function nextSlide()
{
ranNum=ranNum+1
nextim=ranNum+1
if (ranNum == npic)
{
ranNum=0;
}
document.showslide.src = picfold + ranNum + ".jpg"  ;
if (nextim == npic)
{
nextim=0;
}
if (document.images) 
{
img1 = new Image();
img1.src = picfold + nextim + ".jpg" ;
}

}

function prevSlide()
{
ranNum=ranNum-1;
previm=ranNum-1
if (ranNum==-1)
{
ranNum=npic-1;
}
document.showslide.src = picfold + ranNum + ".jpg"  ;
if (previm ==-1)
{
previm=npic-1;
}
if (document.images) 
{
img2 = new Image();
img2.src = picfold + previm + ".jpg" ;
}
}


function transmit()
{
dest=null;
dest="http://www.passage.info/photopost";

openNWindow=window.location(dest);
}
//  End -->