function IsEmpty(objName,strReturnMsg)
{
	if(objName.value=='') 
	{
	alert(strReturnMsg);
	return false;
	}
	return true;
}
