// image selector
// Terras da Beira

// Created on 09-02-2000 by Dom Digital - FR
// http://www.domdigital.pt

function RandomImageLinkLong(apub,sborder)
{
	// ind: random index of image
	// nelem: number onf elements

 nelem= apub.length;
  
 if (nelem !=0 )
 {
	nelem= apub.length / 3;  
	ind = Math.floor(Math.random()*nelem);
	ind = ind *3;
	document.writeln("<a href=\""+apub[ind+1]+"\"><img "+sborder+" src="+apub[ind]+" alt=\""+apub[ind + 2]+"\"></a>");
  }
}


function pub(location)
{
  apub = new Array();

  switch (location)
  {	case 1:	
		{
		//element 1
		
		//element 2

		//element ..n
				
		break;
		}
	default:
		{		

		//element 1
		//apub[0]= "/tb/pub/images/pub_isace.gif"
 		//apub[1]= "/tb/pub/click_ad.asp?url=www.freipedro.pt/isace/"
		//apub[2]= "ISACE-Instituto Superior de Administração Comunicação e Empresa"

		//element 2
		//apub[3]= "/tb/pub/images/pub_este_espaco.gif"
		//apub[4]= "/tb/pub/click_ad.asp?url=www.domdigital.pt/publicidade/"
		//apub[5]= "Este espaço pode ser seu"

		//element 3
		//apub[6]= "/tb/pub/images/pub_imb2.gif"
		//apub[7]= "/tb/pub/click_ad.asp?url=www.domdigital.pt/imb/site/registar.htm"
		//apub[8]= "Operadores de Hotelaria da Beira Interior"

		//element 4
		apub[0]= "/tb/pub/images/pub_tb_new.gif"
		apub[1]= "/tb/pub/click_ad.asp?url=www.terrasdabeira.com"
		apub[2]= "Terras da Beira"

		}
  }  
  RandomImageLinkLong(apub,"border=0");
}
