function wsh_defStartAdjust(obj,def)
  {
    var wsh_offset = new Array();
    var wsh_size = new Array();
    
    wsh_size = wsh_windowSize();
    var halfSize = (wsh_size[1]/3)*2;
    
    if(wsh_curY < halfSize)
    {
      wsh_section = 'fin_def';
      wsh_plcholder = 'wsh_def_placeholder';
    }
    else
    {
      wsh_section = 'fin_def_bot';
      wsh_plcholder = 'wsh_def_bot_placeholder';
    }
    
    wsh_fin_def_display_on(wsh_plcholder,def);
    
    /* moves definition left (smaller number) or right (larger number) */
    var curleft = wsh_curX - 50;
    /* moves definition up (smaller number) or down (larger number) */
    var curtop = wsh_curY  - 185;
    document.getElementById(wsh_section).style.position = 'absolute';
    document.getElementById(wsh_section).style.left = curleft + 'px';
    document.getElementById(wsh_section).style.top = curtop + 'px';
    document.getElementById(wsh_section).style.visibility='visible';
    
    /* this number controls the offset for the Analyst Estimates table, higher number moves it up */
    if(wsh_section == 'fin_def_bot') document.getElementById(wsh_section).style.top = wsh_curY - (document.getElementById(wsh_plcholder).offsetHeight + 170) + 'px';
    return;
  }
