<!--
function random_adlink(){
var image=new Array()
var url=new Array()

//specify below. You can have as many as you wish
// image = image name in /images
// url = link when image is clicked
// note all images used here should be 150 pixels wide
// temp WeddingGram to Weddingbands 


image[1]="lovegram_banner.gif"
url[1]="lovegram.asp"


var ry=Math.floor(Math.random()*image.length)
if (ry==0)
ry=1
//document.write('<a class="smallgrey">'+mytext[ry]+'<br></a>')
document.write('<a href="' + url[ry] + '"><img src="images/' + image[ry] + '" border="0" alt="Click here for details"></a>')
}
random_adlink()
//-->


