 s = new Array();
 ti=new Array();
 co=new Array();
 cols=new Array();

 ti[1]='My Sites';
 co[1]='mintcream';
 cols[1]=3;
 s[1]=new Array();
 s[1][1]='TellingJokes.com';
 s[1][2]='Empowerment-Now.com';
 s[1][3]='Moped2.org';
 s[1][4]='Computer-Addict.freshlinks.net';
 s[1][5]='Dkoontz.com';
 s[1][6]='Scooters2.com';
 s[1][7]='LatestNews.freshlinks.net';
 s[1][8]='BrowserGames.freshlinks.net';
 s[1][9]='Daugava.com';
 s[1][10]='FreshLinks.net';
 s[1][11]='Dawsons-Creek.freshlinks.net';
 s[1][12]='JackieChan.freshlinks.net';
 s[1][13]='Gift-World.us';
 s[1][14]='GetPaidToSurf.freshlinks.net';
 s[1][15]='Chess.freshlinks.net';
 s[1][16]='VMCMS.freshlinks.net';
 s[1][17]='MonopolyGame.freshlinks.net';

 co[2]='#E8E8E8';
 ti[2]='My Radio<br>Stations'
 cols[2]=2;
 s[2]=new Array();
 s[2][1]='mp3.com/stations/dance_workx_radio';
 s[2][2]='mp3.com/stations/new_waves';
 s[2][3]='mp3.com/stations/the_heart_of_electronic';
 s[2][4]='mp3.com/stations/funny_songs1';
 s[2][5]='mp3.com/stations/living_in_a_new_age';
 s[2][6]='mp3.com/stations/dance_workx_ii';
 s[2][7]='stations.mp3s.com/stations/78/agreeable_net_tunes.html';
 s[2][8]='stations.mp3s.com/stations/112/the_heart_of_electronic_ii.html';
 sta=new Array();
 sta[1]='Dance Workx';
 sta[2]='New Wave';
 sta[3]='Electronic';
 sta[4]='Funny Songs';
 sta[5]='New Age';
 sta[6]='Dance Workx II';
 sta[7]='Agreeable Tunes';
 sta[8]='Electronic II';

 ur=document.URL.toLowerCase();

document.write('<p><table><tr valign=top>');
for (x=1; x<=2; x++) {
	document.write('<td>');
	 document.write('<table cellpadding=5 cellspacing=0><tr bgcolor=' + co[x] + '><td><font face=arial size=-1><table CELLPADDING=5><tr><th colspan=3>' + ti[x] + '</th></tr><tr>');
	 j=0;

	 for (i=1; i<s[x].length; i++) {
		  j++;
		  lo=s[x][i].toLowerCase();
		  //if (ur.indexOf(lo) == -1) {
			 if (x==1) titl=s[x][i];
			 else titl=sta[i];

			 p=titl.indexOf(".freshlinks.net");
			 if (p>-1) titl = titl.substring(0,p);

			 if (s[x][i].indexOf('javascript')==-1) s[x][i]='http://' + s[x][i];

			 document.write('<td><font size=-1><a href="' + s[x][i].toLowerCase() + '">' + titl + '</a></td>');
			 if (j>=cols[x]) {
				 document.write('</td></tr><tr>');
				 j=0;
			 }
		  //}
	 }


	if (x==1) document.write("\
		</tr><tr><td colspan=3 align=center> \
		<font size=-1 face=arial><a href=\"http://freshlinks.net/mypages2.htm\"><img src=\"http://freshlinks.net/fold.gif\" border=0>My pages by category</a> \
		</td></tr> \
	");

	 document.write('</table></table>');

	document.write('</td>');
}
document.write('</table><BR>');


