/*
This source code was developed by Atomic Media. This code is
protected by national and international copyright laws. Its usage is governed
by Atomic Media and any unlawful dissemination, replication or revers
engineering of compiled or encrypted sourcecode will be prosecuted to the 
maximum extent of the law. Deployment on out client servers does not allow or license
our clients to modify this sourcecode.


Filename: 			stringLib.js

Version: 			Ver x.x 

File Purpose: 		

Dependencies: 		

Version History:	
					Name:
					Date:			dd-mmm-yy
					Version:		Ver x.x 
					Description:	
					
Function Prototypes:

	- isStrNull : returns 1 depending if passed in string is made of 'spaces' only. Otherwise 0: indicating that other characters 
	were found.
	function isStrNull(STRING);	
*/


// Globals
kSPACE_DEC_CHAR	= 32


function isStrNull(str){
	var flag = true;
	var strLen = str.length;
		
	for(var i = 0; i < strLen; i++){
		if(str.charCodeAt(i) != kSPACE_DEC_CHAR){
			flag = false;
			break;
		}
	}
	return flag;	
}





