// JavaScript Document

function popGallery (picArray,pageTitle) { 
  window.open("imagens/noticias/pop_gallery.php?picArray="+picArray+"&pageTitle="+pageTitle, "", "width=200,height=200,top=10,left=20,status=0,resizable=1,scrollbars=0");
}

function popUp(picSrc,picUrl,pageTitle) { 
  window.open("imagens/noticias/popup.php?picSrc="+picSrc+"&picUrl="+picUrl+"&pageTitle="+pageTitle, "", "width=600,height=400,top=10,left=20,status=0,resizable=1,scrollbars=0");
}

/***********************************************
* Drop down menu w/ description- © Dynamic Drive (www.dynamicdrive.com)
* This notice must stay intact for use
* Visit http://www.dynamicdrive.com/ for full source code

1) customize text descriptions for the options */

var desc_arr = new Array("","Silverio Nery","Mariana Zuquim","Jussara Nery","Samanta Chu","Milton Dinis","Pedro Martins","Pedro Martins","Daniel Nery");
function displaydesc (which,descriptionarray,container){
  if (document.getElementById){
  document.getElementById(container).innerHTML = descriptionarray[which.selectedIndex]
  }
}

/*displaydesc(document.email.to, descriptions, 'description');	

2) Call function displaydesc() for each drop down menu you have on the page
   This function displays the initial description for the selected menu item
   Important: Remove the calls not in use (ie: 2nd line below if there's only 1 menu on your page)

   displaydesc(document.form name.select name, name of corresponding description array, ID of SPAN container tag)
   displaydesc(document.email.to, descriptions, 'description');

***********************************************/