/******************************************************************************
Function name:	fnMandatory
Description  :  This function will be used for the manadatory  text and 
				text area controls of the form
				Functions Used
				1. fnTrim(strValue)
Input		 :	The form Control Value to be checked
Output       :	Boolean ( true/false)
Modification History:
Author			Date				Version				Reference
Shikha			12-02-2001			1.0					
*******************************************************************************/

function fnMandatory(strTxtCtrlValue)
{
	if (strTxtCtrlValue == "")
        return false
    
    strTxtCtrlValue = fnTrim(strTxtCtrlValue)
    
    if (strTxtCtrlValue.length == 0)
       return false
    
	return true
}
