/** 
 * String.replaceAll
 *
 * Replaces all instances of the given substring.
 * Pretty much the same as String.replace except it does all ocurrences.
 *
 * @param strTarget - The substring you want to replace
 * @param strSubString - The string you want to replace in.
 */
String.prototype.replaceAll = function(strTarget, strSubString){
	var strText = this;
	 
	var s = strText.split(strTarget);
	strText = s.join(strSubString);
	
	return( strText );
}