var numPictures=13;
var txtStation="Second Station";
var txtDescription="Jesus Takes Up His Cross";

document.title="The Way of the Cross: Station 2: " + txtDescription;
var num=Math.round((Math.random()*(numPictures-1))+1);

images = new Array(numPictures);
images[1]="stat0201.jpg";
images[2]="stat0202.jpg";
images[3]="stat0203.jpg";
images[4]="stat0204.jpg";
images[5]="stat0205.jpg";
images[6]="stat0206.jpg";
images[7]="stat0207.jpg";
images[8]="stat0208.jpg";
images[9]="stat0209.jpg";
images[10]="stat0210.jpg";
images[11]="stat0211.jpg";
images[12]="stat0212.jpg";
images[13]="stat0213.jpg";

height = new Array(numPictures);
height[1]=300;
height[2]=300;
height[3]=300;
height[4]=300;
height[5]=300;
height[6]=300;
height[7]=300;
height[8]=300;
height[9]=236;
height[10]=300;
height[11]=254;
height[12]=300;
height[13]=300;

width = new Array(numPictures);
width[1]=204;
width[2]=181;
width[3]=188;
width[4]=208;
width[5]=272;
width[6]=213;
width[7]=315;
width[8]=326;
width[9]=150;
width[10]=227;
width[11]=167;
width[12]=211;
width[13]=303;

alt = new Array(numPictures);
alt[1]=txtDescription + ", artist unknown";
alt[2]=txtDescription + ", artist unknown";
alt[3]=txtDescription + ", artist unknown";
alt[4]=txtDescription + ", anonymous illustration";
alt[5]="Christ Carrying the Cross, by Lotto, 1526, oil on canvas";
alt[6]="Christ Carrying the Cross, by El Greco";
alt[7]="Christ Carrying the Cross, by Giotto";
alt[8]="Christ Carrying the Cross, by Hieronymous Bosch";
alt[9]=txtDescription + ", artist unknown, from Saint Dominic's Catholic Church, Panama City, Florida, USA";
alt[10]=txtDescription + ", artist unknown";
alt[11]=txtDescription + ", German holy card, artist unknown";
alt[12]=txtDescription + ", from Immaculate Conception Catholic Church, Earlington, Kentucky, USA";
alt[13]=txtDescription + ", from Christ the King Catholic Church, Madisonville, Kentucky, USA";

document.writeln("<b><big>" + txtStation + "<br>" + txtDescription + "</big></b><blockquote>")
document.writeln("<img src=" + images[num] + " align=right height=" + height[num] + " width=" + width[num] + " border=0 alt='" + alt[num] + "'>")

