
// define sites_name with your own character name so that it is not displayed
// define sites_width to change the width of the table
// define sites_format as "brief" if you do not want descriptions
// define sites_align to set the table's alignment

sites = new Array(4);

  sites[0] = 4; // number of sites

  sites[1] = new Array(4);
  sites[1][0] = "Poseidon";
  sites[1][1] = "http://www.geocities.com/seersofthakria/";
  sites[1][2] = "Seers of Thakria";
  sites[1][3] = "An unofficial guild site which details the rudiments for any seer, including the effects of herbs, poisons, potions and runes, common gold quests and the full documentation of the Seer skillset.";

  sites[2] = new Array(4);
  sites[2][0] = "Kinamic";
  sites[2][1] = "http://www.geocities.com/kinamic/";
  sites[2][2] = "First Age Magazine";
  sites[2][3] = "Here is an interesting publication of online articles, interviews, comments and advice by the notorious Kinamic. New issues come and go as he pleases.";

  sites[3] = new Array(4);
  sites[3][0] = "Mishkal";
  sites[3][1] = "http://www.mages.republika.pl";
  sites[3][2] = "Mages of Mercinae";
  sites[3][3] = "Beautiful enough on its own to warrant listing, this unofficial site is devoted to the morals, interests and directions of the Mages Guild.";

  sites[4] = new Array(4);
  sites[4][0] = "Eva";
  sites[4][1] = "http://www.geocities.com/avalon_alchemists/";
  sites[4][2] = "Alchemists of Mercinae";
  sites[4][3] = "By one of the longest standing Alchemists, this unofficial guild site will teach you the ways, tactics and history of the Alchemist.";

function show_sites() {

  var w = window;

  if ( w.sites_format != "brief" ) {
	w.sites_format = "verbose";
  }
  
  document.write('<table ');
  if ( w.sites_width ) { document.write('width=' + w.sites_width + ' '); }
  document.write(' cellpadding=3 cellspacing=0 border=0');
  if ( w.sites_align ) { document.write(' align=' + w.sites_align); }
  document.write('>');

  if ( w.sites_format != "brief" ) {
	document.write('<tr>' +
	' <td width=16%><u>PLAYER</u></td>' +
	' <td width=24%><u>SITE</u></td>' +
	' <td width=60%><u>DESCRIPTION</u></td>' +
	'</tr>');
  }

  for (i = 1; i <= sites[0]; i++) {
	if (w.sites_name != sites[i][0]) {
		show_name(i,w.sites_format);
	}
  }

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

}

function show_name(i,format) {

  if (format != "brief") {
	document.write('<tr>' +
	' <td valign="top">' + sites[i][0] + '</td>' +
	' <td valign="top"><a href="' + sites[i][1] +
	'">' + sites[i][2] + '</a></td>' +
	' <td valign="top">' + sites[i][3] + '</td></tr>');
  } else {
	document.write('<tr><td>' + sites[i][0] + '\'s ' +
	'<a href="' + sites[i][1] +'">' + sites[i][2] + '</td></tr>');
  }

}

show_sites();
