// image selector
// NOVA GUARDA

// 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 / 4;  
	ind = Math.floor(Math.random()*nelem);
	ind = ind *4;
//	document.writeln("<p><a href=\""+apub[ind+1]+"\"><img "+sborder+" src="+apub[ind]+" alt=\""+apub[ind + 2]+"\"></a></p>");
  	document.writeln("<p><a href=\""+apub[ind+1]+"\"><img src="+apub[ind]+" "+sborder+" "+apub[ind+3]+" alt=\""+apub[ind + 2]+"\"></a></p>");
  }
}


function pub(location)
{
  apub = new Array();
//  apub2 = new Array();

  switch (location)
  {	case 1:	
		{
		//element 1
		
		//element 2

		//element ..n
				
		break;
		}
	default:
		{		
		//element 1
		//apub[0]= "/pub/images/pub_galenic.gif"
		//apub[1]= "/pub/click_ad.asp?url=www.farmaciapfiles.com/produtos/promocoes.asp"
		//apub[2]= "Protectores Solares Galenic"
		//apub[3]= "WIDTH=120 HEIGHT=100"
		
		//apub2[0]= "/pub/images/pub_albi.gif"
		//apub2[1]= "/pub/click_ad.asp?url=www.palegessos.com/produtos/index.asp"
		//apub2[2]= "Veja as vantagens na utilização do Gesso Albi"
		//apub2[3]= "WIDTH=175 HEIGHT=77"
		}
  }  
  RandomImageLinkLong(apub,"border=0");
//  RandomImageLinkLong(apub2,"border=0");
}
