That's the entire code. You're not editing it all.
CODE
<!-- begin code provided by createblog.com -->
else if (str.match (/USER NAME/i)) links[l].innerHTML = str.replace (/USER NAME/i, "THE NAME YOU WANT IT TO BE");
<!-- end code provided by createblog.com -->
That's ALL you're editing. Let's look at each individual peice of the above code.
CODE
<!-- begin code provided by createblog.com -->
(str.match (/USER NAME/i))
<!-- end code provided by createblog.com -->
This is where you determine what you want to change. So, let's use 'Sign Out'.
You would get.....
(str.match (/Sign Out/i))!
Then you need to tell then internet what you want the link to change to. Hence ::
CODE
<!-- begin code provided by createblog.com -->
str.replace (/USER NAME/i, "THE NAME YOU WANT IT TO BE");
<!-- end code provided by createblog.com -->
This tells it what you want the aforementioned link to become. Let's say we want it to be... 'Buh-bye!'. You'd changwe the code so that it says ::
CODE
<!-- begin code provided by createblog.com -->
str.replace (/Sign Out/i, "Buh-bye!");
<!-- end code provided by createblog.com -->
Repeat for every word.
..... Go to ::
http://help.xanga.com/replacelinks.htmIf you didn't understand.