//<![CDATA[
try
{
    function inscore_xdc(neco)
    {
        this.elm=document.getElementById("inscore-xdc");

        this.hash=null;

        this.resize=function()
        {

            if(location.hash!=this.hash)
            {
                this.hash=location.hash;
                var reggg=new RegExp(".*inscore_ifheight_xdc_([0-9]).*");
                var res = this.hash.split('_');

                if(parseInt(res[3])>0)
                {               
                    this.elm.style.height=((res[3]>0&&res[3]<=20000)?parseInt(res[3]):10000)+"px";
                    this.elm.style.overflow="hidden";
                }
                else
                    this.elm.style.height="10000px";
                }
            }
    }
    var inscore_xdc_run=new inscore_xdc();setInterval("inscore_xdc_run.resize()",100);
}
catch(e){document.getElementById("inscore-xdc").style.height = "10000px";}
//]]>