/*
 * 	Routine functions for jquery
 * 	Author: Roderick Rocamora
 *		Email: aromacor@yahoo.com
 */

function isEmpty(e)
{
	//alert('isEmpty=' + e );
	if($.trim($(e).val()).length==0)//required field
		return true
	else 
		return false;
}
