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