﻿
<!-- Begin

String.prototype.len=function(){ 
return this.replace(/[^\x00-\xff]/g,"**").length; 
} 
function CheckLengthEn600(source, arguments) 
{ 
var ValidStrLength=600; 
var ValidStrShortLength= 2; 

if (arguments.Value.len() <= ValidStrShortLength || arguments.Value.len() > ValidStrLength)
arguments.IsValid = false; 
else 
arguments.IsValid = true; 

} 



// End -->