<!--
/* function to check the filed contain only spaces or not adn return true ofr false */
function checkSpace(str)
{	
	var exp =/\s/g;

	str = str.replace(exp,"");

	if(str.length==0)
	{
		return true;
	}
	else
	{
		return false;
	}
}

//-->
