
<!--
/*
Random Image Link Script
By Website Abstraction (http://www.wsabstract.com)
and Java-scripts.net (http://www.java-scripts.net)
*/

function random_imglink(){
 var Quotes=new Array()
 //specify random images below. You can have as many as you wish
 Quotes[1]="Quotes/Quote1.gif"
 Quotes[2]="Quotes/Quote2.gif"
 Quotes[3]="Quotes/Quote3.gif"
 Quotes[4]="Quotes/Quote4.gif"
 Quotes[5]="Quotes/Quote5.gif"
 Quotes[6]="Quotes/Quote6.gif"
 Quotes[7]="Quotes/Quote7.gif"

 var ry=Math.floor(Math.random()*Quotes.length)

 if (ry==0)
    ry=1
    document.write('<img src="'+Quotes[ry]+'" border=0>')
}

 random_imglink()
//-->
