<!-- Begin RANDOM HOME IMAGE Private Class


// TO ADD MORE IMAGES: 



var width = "175"; // Width of Advertisements + 1
var height = "110"; // Height of Advertisements +1
var target = "_blank"; // Target window to open the ads

var ad=new Array()
// Write down the source urls of ad images
ad[0]='church/picts-sidebar/image-300.jpg';
ad[1]='church/picts-sidebar/image-301.jpg';
ad[2]='church/picts-sidebar/image-302.jpg';
ad[3]='church/picts-sidebar/image-303.jpg';


var links=new Array()
//Write link to ads respectively
links[0]='../../ziframe/sidebar-3-300.htm';
links[1]='../../ziframe/sidebar-3-301.htm';
links[2]='../../ziframe/sidebar-3-302.htm';
links[3]='../../ziframe/sidebar-3-303.htm';


var s = Math.floor(Math.random()*ad.length);
document.write('<a href="'+links[s]+'" target="'+target+'"><img src="'+ad[s]+'" width="'+width+'" height="'+height+'" border="1" alt="'+links[s]+'"></a>');




// stop -->


