IE throwing JS Error but works fine in FF

I am getting this error in IE only:

[COLOR=“Red”]object doesn’t support this property or method on Line 247[/COLOR]

With the script debugger it points to this line in my JS ->


function initListGroup(n) {
  var _content=cs_findContent(n), count=0;
  if (_content!=null) {
    **[COLOR="Red"]content=new cs_contentOBJ("cs_"+n,_content.menu);[/COLOR]**
    cs_content[cs_content.length]=content;

    for (var i=1; i<initListGroup.arguments.length; i++) {
      if (typeof(arguments*)=="object" && arguments*.tagName && arguments*.tagName=="SELECT") {
        content.lists[count]=arguments*;

        arguments*.onchange=cs_updateList;
        arguments*.content=content; arguments*.idx=count++;
      }
      else if (typeof(arguments*)=="string" && /^[a-zA-Z_]\w*$/.test(arguments*)) {
        content.cookie=arguments*;
      }
    }

    if (content.lists.length>0) {
      cs_initListGroup(content,content.cookie);
    }
  }
}

I believe that problem is referring to a null or empty object. What I dont understand is why IE doesn’t show it but FF it works fine. I am using PHP to display some parts of this javascript, but even when I hard code the values in it still doesnt work.