[quote=aldreen_05]wer will i paste d code??????????

[/quote]
just change the value of the variables..
var id=""; <--- example var id="121312";
var comments = ""; <----- var comments="comments here..";
also don't do some spacing like this or else you'll get error---->
var aboutme = " <a href='blah.htm'>Name: blaahh br</a>
Age: blahh";
instead do like this --------> var aboutme ="Name:blahh <br> age:blahh";
and also never use this symbol inside the " "; ---> "
instead use this --> '
example: var aboutme = "<a href="blah.html">blah</a>"; <--- wrong way
var aboutme = "<a href='blah.htm'>blah</a>"; <-- correct way