function colored(){
	if(chequingAsset == 'error'){
		document.getElementById('err_chequingAsset1').style.backgroundColor = '#f1e5e5';
		document.getElementById('err_chequingAsset2').style.backgroundColor = '#f1e5e5';
	}else{
		document.getElementById('err_chequingAsset1').style.backgroundColor = '#f6f4ef';
		document.getElementById('err_chequingAsset2').style.backgroundColor = '#f6f4ef';
	}
}

function convertWhitespace(str){
	var finish = '';
	if(str){
		finish = str.replace(/ /g, "_");
	
		return finish;
	}	
}
