function go()
{
	var index=document.formGo.selectGo.selectedIndex;
	if ((index == 0)) { return false; }
	else 	{ location.href = document.formGo.selectGo.options[index].value; return false; }
};


function goToCountry()
{	var    C1 = document.formC.selectC.selectedIndex;
               C2 = document.formC.selectC.options[C1].value;
               page = "http://www.icye.org/cgi-bin/projdb/index.cgi?db=pub&amp;uid=default&amp;sb=11&amp;so=ascend&amp;Country=" + C2 + "&view_records=View";
	if ((C1 == 0)||(C1 == 1)) { return false; } 
	else 	{ location.href = page; return false; }
};

function goToArea()
{	var    A1 = document.formA.selectA.selectedIndex;
               A2 = document.formA.selectA.options[A1].value;
               page = "http://www.icye.org/cgi-bin/projdb/index.cgi?db=pub&amp;uid=default&amp;sb=4&amp;so=ascend&amp;Areas=" + A2 + "&view_records=View";
	if ((A1 == 0)||(A1 == 1)) { return false; } 
	else 	{ location.href = page; return false; }
};





function getRandom(maxPic) 
  {
     randNum = 0
     while (randNum > maxPic || randNum < 1) {
          randNum = (Math.round((Math.random() * 300)))
     } 
     return randNum
  };

function getNextImage(settings) 
  { 
     document.write('<IMG SRC="http://www.icye.org/gfx/random/pic' + getRandom(58) + '.jpg"' + settings + '>');
  } ;

