function containsData(pVal) {
	if(pVal == null)
		return "";
	if(typeof(pVal) == "undefined")
		return "";
	var re = new RegExp("[ \s]+");
	return !(pVal.replace(re, "") == ""); }