/* CodigoFonte User Interface */

$(document).ready(function(){
	$("select[name='cmbcodigos']").change(function() {
		if($(this).val() != "")
		{	
			window.location.href = $(this).val();
		}
	});
	
	$("select[name='cmbartigos']").change(function() {
		if($(this).val() != "")
		{		
			window.location.href = $(this).val();
		}
	});
});

function CheckForm()
{
	return true;
}


