function isEmpty(str){
	for(var intLoop=0; intLoop < str.length; intLoop++)
		if(" " != str.charAt(intLoop)) return false;
	return true;
}
