﻿function CheckLength(field, maxlimit) {
	if (field.value.length > maxlimit) {
		alert("Text cannot be more than " + maxlimit + " characters.");
		return false;
	}
}

function clearText(txtId) {
    if (document.getElementById(txtId).value == "Search For Products...") {
        document.getElementById(txtId).value = "";
    }
}
