$(document).ready(function(){ 
	// clear product icons if the link is empty
	$("a[href='']").parent().hide();
	$("a[href='n/a']").parent().hide();
	
	// ensure all form fields are UPPER case
	//$(".upper input").change(function() {
	//	$(this).val().toUpperCase();
	//});
});

// Validate serial numbers
function validateCustomerSN() {
	// "CAT_Custom_148795"
	//alert($("#CAT_Custom_148795").val().length);	
	if($("#CAT_Custom_148795").val().length != 13) {
		alert('Product serial number MUST be 13 DIGITS');
		$("#CAT_Custom_148795").focus();
	}
}
function validateDealerSN() {
	// "CAT_Custom_154805"
	//alert($("#CAT_Custom_154805").val().length);	
	if($("#CAT_Custom_154805").val().length != 13) {
		alert('Serial number MUST be 13 DIGITS');
		$("#CAT_Custom_154805").focus();
	}
}
