//abertura de pop-up para impressão, indicação do sistema SortiS
function AbrirJanela(URL){
      window.open(URL,"","width=470,height=270,scrollbars = no");
}
function AbrirJanela2(URL){
      window.open(URL,"","width=600,height=400,scrollbars = yes");
}
function Enquete(URL){
	  window.open(URL,"enqresult","width=300,height=400,toolbar=no,status=no,menubar=no");
}
function AbrirRadio(URL){
      window.open(URL,"","width=502,height=231,scrollbars = no");
}
//função da enquete
function gotoURL(selectList) {

      var URL = selectList.options[selectList.selectedIndex].name

	  if(URL.length != -1 && selectList.selectedIndex != 0){
	        this.location = URL;
	  }

      return false;
}

