function checkForEmpty(itext)
{

	if(itext == "" || itext == null){
	return false;
	}
	return true;
}