

/*************************************************************************
'Function Name	: fnCheckTextAreaLength
'Description	: This function is used to check the maximum length of text area
'Return			: Boolean - True If no error Else False

'Modification History
'Author						Date						Reference
'rajesh						08-07-2001					Created
'************************************************************************/

function fnCheckTextAreaLength(r_varCtrl,r_length)
{
    

if (r_varCtrl.value.length > r_length ) 
    {
		var lc_strErr
		r_varCtrl.select()
		r_varCtrl.focus()
		return false
			
    }
    return true
    
}


function fnCheckTextAreaLength1(strValue,r_length)
{
	if (strValue.length > r_length ) 
    {
		return false
    }
    return true
    
}
