function suporteCombo(){
  location.href = base_url+'suporte/produto/'+$(this).val()
}

function popup(){
  link = $(this).attr('href')
  window.open(link, 'popup', 'status=yes,scrollbars=yes,width=670,height=480')
  return false
}
  
$(document).ready(function(){
	$("select#produto").change(suporteCombo)
  $(".popup").click(popup)
})
