// image selector

// Created on 09-02-2000 by Dom Digital - FR
// http://www.domdigital.pt

// alert("cccc");
function RandomImageLinkLong(apub,sborder)
{
	// ind: random index of image
	// nelem: number onf elements

 nelem= apub.length;
  

 if (nelem !=0 )
 {
	nelem= apub.length / 6;  
	ind = Math.floor(Math.random()*nelem);
	ind = ind *6;
	if (apub[ind+3]==0)
	{
	document.write("<a href='"+apub[ind+1]+"'><img "+sborder+" src='"+apub[ind]+ "' width='" + apub[ind+4] + "' height='" + apub[ind+5] + "' alt='"+apub[ind + 2]+"'></a>");
	}
	else
	{
		aa = ("<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0\" width=\"" + apub[ind+4] + "\" height=\"" + apub[ind+5] + "\">\n")
		aa+=("<param name=movie value=\""+ apub[ind]+ "\">\n")
		aa+=("<param name=quality value=high>\n")
		aa+=("<embed src=\""+ apub[ind]+ "\" quality=high pluginspage=\"http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash\" type=\"application/x-shockwave-flash\" width=\"" + apub[ind+4] + "\" height=\"" + apub[ind+5] + "\">\n")
		aa+=("</embed>\n")
		aa+=("</object>\n")	
		document.write(aa)
	}
  }

}


function pub(location)
{
  
  apub = new Array();

  switch (location)
  {
  	case 1:	
		{
	
			//element 1 flash
		//apub[0]= "/pub/images/natura2.swf"
		//apub[1]= ""
		//apub[2]= ""
		//apub[3]= 1
		//apub[4]= 205
		//apub[5]= 160
		
		//element 1 imagem
		apub[0]= "/pub/images/pub3.gif"
		apub[1]= "promocoes.htm"
		apub[2]= "Especial Grupos e Empresas"
		apub[3]= 0 
		apub[4]= 148
		apub[5]= 118


		break;
		}
	default:
		{		
		//element 2 imagem
		apub[0]= "/pub/images/pub4.gif"
		apub[1]= "promocoes.htm"
		apub[2]= "Promoção Casamentos"
		apub[3]= 0 
		apub[4]= 148
		apub[5]= 174

		}
  }  
  RandomImageLinkLong(apub,"border=0");
}
