[quote]hello \"+pageViewerFName+\" welcome to my page! your id is \"+pageViewerID+\" the time and date there is \"+Date()+\" your browser is \"+navigator.appName+\" \"+navigator.appVersion+\" puhlease drop some comments before you leave[/quote]
^ try removing all this --> [b] \[/b]
or try using the old addbox..
[quote]function onProfileLoad() {
var scroll="<embed src='http://www.myflashfetish.com/mp3assets/widgets/ticker.swf' menu='false' flashvars='mycolor=312C20&mycolor2=FFBF00&txt= hello "+pageViewerFName+" welcome to my page! your id is "+pageViewerID+" the time and date there is "+Date()+" your browser is "+navigator.appName+" "+navigator.appVersion+" puhlease drop some comments before you leave ' quality='best' scale='noscale' bgcolor='#000000' width='320' height='35' name='MyFlashFetish.com' align='middle' allowScriptAccess='sameDomain' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />";
addBox("LEFT","HEADER_TITLE_HERE",scroll,"scroll","0");
}
if (!attachOnLoadHandler(function(){onProfileLoad()})) window.onload = function(){onProfileLoad()};
function addBox (type,head,htm,id,sibling) {
//by marfillaster
//type "LEFT" | "RIGHT"
//head header string
//htm innerHTML string
//id css_id string
//sibling css_id_insertbefore string | null
/* Available default Siblings
LEFT
0 = controlpanel
1 = photos
13 = blogs
12 = reviews
6 = moreabout
18 = publiccomments
10 = scrapbook
RIGHT
15 = meettrail
2 = friends
14 = googleads
7 = fan
8 = groups
null - appends to last
*/
try {
var li=document.createElement("li");
} catch(e) {
var li=document.createElement("<li>");
}
if(type=="LEFT") {
var ul=document.getElementById("0").parentNode.parentNode;
htm="<div class='boxcontent'>"+htm+"</div>";
}
else var ul=document.getElementById("2").parentNode.parentNode;
li.innerHTML="<div id='"+id+"' class='commonbox "+id+"'>"+
"<h2>"+head+"</h2>"+
"<div id='content_"+id+"'>"+
htm+
"</div>"+
"</div>";
if(sibling==null) ul.appendChild(li);
else {
sibling=document.getElementById(sibling).parentNode;
ul.insertBefore(li,sibling);
}
}[/quote]
Last edited by niknok_1999 (2008-02-21 00:49:28)