function str_replace(search, replace, subject) {
	var string = subject.replace(search, replace);
	
	/* alert(string); */
	
	return string;
}
