function SpecialInstructionsLength(){
	var length;
	if(document.form1.imp_specialinstruction){
		length = document.form1.imp_specialinstruction.value.length;
	}else{
		length = document.form1.imp_specialinstructioni.value.length;
	}
	if (length > 200) {
		alert("Special Instructions may not exceed 200 characters.  The total length is " + length + ".");
		return false;
	}
	else {
		return true;
	}
}
function checkLength(obj){
	if(obj.value.length>200){
		obj.value=obj.value.substr(0,200);
		alert("Special Instructions may not exceed 200 characters.")
	}else{
		return;
	}
}
personal.SpecialInstructionsLength = SpecialInstructionsLength;

