Can anybody help me to translate this script from java to jython?
<script type="text/javascript">
function validate()
{
if (document.getElementById("customfield_19600").value.length >33)
{
alert ( "Invalid length, must be no more than 33 characters" );
return false;
}
}
</script>