<!--

/*
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.

mycontent[1]='<A HREF="http://www.web-hostess.com/services/webHosting.htm"><IMG SRC="http://www.web-hostess.com/graphics/Rotators/LeftNavBar/noProblemAnim.gif" WIDTH="101" HEIGHT="175"  BORDER="0"></A>'

mycontent[2]='<A HREF="http://www.web-hostess.com/services/webHosting.htm"><IMG SRC="http://www.web-hostess.com/graphics/Rotators/LeftNavBar/saveBIGanim.gif" WIDTH="101" HEIGHT="175" BORDER="0"></A>'



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