$(document).ready(function(){
	$('#src_id_bott').click(function(){
		error = false;
		var temp = $('#src_id').val();
		temp =  temp.replace(/^\s\s*/, '').replace(/\s\s*$/, '');
		if (temp == '') error = true;
		if (isNaN(temp)) error = true;

		if (error){
			$("#error_dialog").html('<div class="dialog_txt"><strong><span class="blue">Codice ordine</span> mancante!</strong></div>');
			$("#error_dialog").dialog('open');
			return false;			
		}else{
			$('#frm_search').submit();
		}
	});
	
	var validator = $('#frm_search').validate({
		messages:{
			src_id: {
				required: "Inserisci il Codice Ordine"
			}
		}, 
		errorClass: "orange", 
		errorPlacement: function(error,element){
			$('#box_error').html(error);
		}
	});
	$('#frm_search').onSubmit = function(){
		return $('#frm_search').valid();
	}
});