[b]
can any1 help me how to change this code so i can put it in my js....
its that Chatango chat box thing not theCbox ...
i want the chatbox to be at the right side if thats possible...[/b]
heres m
				
					your code is incomplete,you didn't include this to your addbox function
[spoiler][quote]}
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]
[/spoiler]
the right one
[spoiler][quote]function onProfileLoad() {
//onload handler
var code="<object width=\"200\" height=\"400\" id=\"obj_1223018331906\"><param name=\"movie\" value=\"http://CrAzeeChAt.chatango.com/group\"/><param name=\"wmode\" value=\"transparent\"/><param name=\"AllowScriptAccess\" VALUE=\"always\"/><param name=\"AllowNetworking\" VALUE=\"all\"/><param name=\"AllowFullScreen\" VALUE=\"true\"/><param name=\"flashvars\" value=\"cid=1223018331906&a=000000&b=100&c=FFFFFF&d=CCCCCC&e=000000&g=F6F6F4&k=666666&l=333333&m=000000&n=FFFFFF&p=12&s=1&v=0&aa=1\"/><embed id=\"emb_1223018331906\" src=\"http://CrAzeeChAt.chatango.com/group\" width=\"200\" height=\"400\" wmode=\"transparent\" allowScriptAccess=\"always\" allowNetworking=\"all\" type=\"application/x-shockwave-flash\" allowFullScreen=\"true\" flashvars=\"cid=1223018331906&a=000000&b=100&c=FFFFFF&d=CCCCCC&e=000000&g=F6F6F4&k=666666&l=333333&m=000000&n=FFFFFF&p=12&s=1&v=0&aa=1\"></embed></object>";
addBox("RIGHT","CHATANGO",code,"div_238","14");
[b]}
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);
    }
}[/b][/quote]
[/spoiler]