var sid="mitnamdliw_wildmantim";

//--- Array for Netscape 2.0x and 3.0x
function MakeArray(n) {                 
   this.length = n;
   for (var i = 1; i <= n; i++) { 
     this[i] = 0 }
     return this
 }

//this produces a randomly generated HTML code that is inserted on your page 
function RandomNumber(sid) {
  var today = new Date();
  var num= Math.abs(Math.sin(today.getTime()/1000));
  return num;  
}
function TipWizard() {

//tailor to the browser capabilities
var appname= navigator.appName;             
var appversion=parseInt(navigator.appVersion);

         if (appname == "Netscape" && appversion >= 3){
 //( Netscape 3.0 or higher)
	var testNum = Math.random(); }
	else {
//all others use this call       
	var testNum = RandomNumber(sid);}
	
//remember to change this according to the 
//number of tips in the array below
	var NoOfTips=10;

//-- tips array --

var x=0;
var y=0;
var messages = new MakeArray(NoOfTips);
messages[0]=NoOfTips;
//load the array with messages
messages[1]="This is the random message generator";
messages[2]="Word to your homie"; 
messages[3]="<a href='http://aajvs.aboho.com/phpbb/'>ThePlaceToPost Forum</a>"; 
messages[4]="Nifty Shifty"; 
messages[5]="<a href='http://vansledright61.home.comcast.net'>The Family site</a>"; 
messages[6]="Your Logo here";
messages[7]="Your Ad Here";
messages[8]="Your Website URL Here";
messages[9]="This is Aaron's Site So Word up!";
messages[10]="<a href='http://www.aboho.com/forum/'><img src='http://www.aboho.com/forum/images/linkme/abohob5.png'></a>";  //      I added the closing anchor tag here

//calculate the tip to show
y=1/NoOfTips;
for(x= 1; x <= NoOfTips; x++) {
	while(sid!="mitnamdliw_wildmantim"){};
	if ( testNum > ( NoOfTips  - x ) * y ) {
		document.write("<center><font size=3 face=Times New Roman color=#000000>" + messages[x]+ "<font></center>");
		break; }
}	}
        TipWizard();