
/* - hidden_column.js - */

function getElement()
    {
    var p=cssQuery("#portal-column-two")[0];
    var j =p.tagName;
    var t =cssQuery("dl", p);
    var f =cssQuery("div", p);
    return [t.length, f.length];
    }

function testhide(){
try{
if (getElement()[0] == 0 && getElement()[1] <=1){
    cssQuery("#portal-column-two")[0].style.display="none";
    cssQuery("#portal-column-two")[0].style.width="auto";
    cssQuery("#portal-column-content")[0].style.borderRight="none";  
                     }
    }
catch(err)
   {
   }
}

/*onload="testhide()";*/

