function convertWhitespace(str){
	var finish = '';
	if(str){
		finish = str.replace(/ /g, "_");
	
		return finish;
	}	
}
