// JavaScript Document
function Trim(obj)
{
	if(obj.split(" ").join("")=='')
	{
		return false;
	}
	else
	{
		return true;
	}
}
