function is_empty_string(strValue){

	strValue = String(strValue);
	strValue = strValue.toLowerCase();
	
	while (strValue.search(" ") != -1)
		strValue = strValue.replace(" ","");  
	
	var intLength = 0;
	for(var i=0; i < strValue.length; i++){
		if((strValue.charCodeAt(i) != 13) && (strValue.charCodeAt(i) != 10))
			intLength++;
	}

	if (strValue.length > 0){
		if (strValue == "undefined")
			return true;
		else if (strValue == "null")
			return true;
		else
			return false;
	}
	else
		return true;
}