function check_date(el, date) {

		if($(el).parent().attr('class') == 'green' || $(el).parent().attr('class') == 'yellow') {
		showload(1);
		$('.green').each(function() { $(this).css('border', '1px solid #CCCDCF') });
		$('.yellow').each(function() { $(this).css('border', '1px solid #CCCDCF') });
		$(el).parent().css('border', '1px solid red');
		$.post(gen_local_url('order', 'functions'), { check_date : date }, function(data){ $('#print_date').html(data); });
		setTimeout("showload(0)", 200);
		}

}

