// Italian Gold Prospecting Web Ring --------------------------------

sites = new Array()
sites [1] = "http://members.tripod.it/goldprospecting/indice.html"
sites [2] = "http://utenti.tripod.it/Glodclubrozzano/index.htm"

// ------------------------------------------------------------------


var max=sites.length-1, place=0

function findthis() {
	thisURL=document.URL.toLowerCase();
	for (var i=1; i<=max; i++){
		if (thisURL==sites[i])
			place=i;
}
}

function go(where) {
	location = sites[where];
}

function next() {
	findthis();
	if (place==max)
		place=1;
	else
		place=place+1;
	go(place);
}

function previous() {
	findthis();
	if (place<=1)
		place=max;
	else
		place=place-1;
	go(place);
}

function getRandom() {
   return Math.random()
}

function random() {
	findthis();
	myrand=Math.round(getRandom()*(max));
	if ((place==myrand) || (myrand==0))
		random();
	else {
		place=myrand;
		go(place);		
}
}
	

document.write('<br><div align="center"><center>'
+'<table BORDER="1" CELLSPACING="3" CELLPADDING="3" WIDTH="560" BGCOLOR="#FFFF8A">'
  +'<tr>'
    +'<th><p align="center">'
    +'<a href="http://members.tripod.it/goldprospecting/form_gpring.html"><img SRC="http://members.tripod.it/goldprospecting/gpring1_i.gif" ALT="Iscrivi il tuo sito, Gratis!" BORDER="0" align="left" width="110" height="110"></a>'
    +'<a href="javascript:next()"><img SRC="http://members.tripod.it/goldprospecting/gpring2_i.gif" ALT="Prossimo" BORDER="0" align="right" width="110" height="110"></a>'
    +'<a href="http://www.goldprospecting.3000.it"><img src="http://members.tripod.it/goldprospecting/gpring_i.gif" alt="Gold Prospecting Web Ring - Italian Web Sites only" border="0" width="284" height="30"></a><br>'
    +'<font face="Verdana" size="1"><strong>Il Primo Web Ring Italiano dedicato ai Cercatori d\'Oro</strong></font></p>'
    +'<div align="center"><center>'
    +'<table border="0" bgcolor="#FFFFFF" cellspacing="0" cellpadding="0">'
      +'<tr>'
        +'<td>'
          +'<font face="Verdana" size="1"><strong>'
          +'<img src="http://members.tripod.it/goldprospecting/flag_i.gif" width="22" height="18" align="absmiddle"><a href="http://members.tripod.it/goldprospecting/link_it_gpring.html">Italian Web Sites only</a> <img src="http://members.tripod.it/goldprospecting/flag_i.gif" width="22" height="18" align="absmiddle"></strong></font>'
        +'</td>'
      +'</tr>'
    +'</table>'
    +'</center></div>'
    +'<p align="center"><strong>'
    +'<a href="http://members.tripod.it/goldprospecting/form_gpring.html">'
    +'<font face="Verdana" size="1">Iscrivi gratuitamente anche il tuo Sito!</font></a><font face="Verdana" size="1"></font></strong></th>'
  +'</tr>'
  +'<tr>'
    +'<th><strong><font face="Verdana" size="2">[<a '
    +'href="javascript:previous()">Precedente</a>] [<a '
    +'href="javascript:random()">Casuale</a>] [<a '
    +'href="javascript:next()">Successivo</a>]</font></strong></th>'
  +'</tr>'
+'</table>'
+'</center></div>');


