
/*
Note that when entering in the contents make sure each content line exists all on ONE line regardless of how long it is. Inadvertent line breaks within a code will cause a JavaScript error.
*/

function random_content(){
var mycontent=new Array()
//specify random content below between the apostrophes.
mycontent[1]='<I><A HREF="http://www.web-hostess.com/about/introabout.htm">See why web pro\'s prefer our service!</A></I>'
mycontent[2]='<I><A HREF="http://www.web-hostess.com/specials/specialOffers.htm">Park your Domains<BR>for FREE!<BR></A></I>'
mycontent[3]='<I><A HREF="http://www.web-hostess.com/services/webHosting.htm">Check out these great deals on hosting!</A></I>'
mycontent[4]='<I><A HREF="http://www.web-hostess.com/specials/specialOffers.htm">Get your FREE<BR>Domain Name!<BR></A></I>'
mycontent[5]='<I><A HREF="http://www.web-hostess.com/specials/specialOffers.htm">Get a FREE month of<BR>web hosting!<BR></A></I>'


var ry=Math.floor(Math.random()*mycontent.length)
if (ry==0)
ry=1
document.write(mycontent[ry])
}
random_content()
