// JavaScript Document
//EXPAND DIV
      function expand(param)
  {
               param.style.display=(param.style.display=="none")?"":"none";
    }
//POP UP CONTROL
function popitup(url,properties)
{
        newwindow=window.open(url,'pop',properties);
        if (window.focus) {newwindow.focus()}
        return false;
}

//-->