// sheet.js

/*
  3EProfiler character sheet source file.
  Copyright (C) 2007 Myth-Weavers Games
  **
*/

// **

// Initialization and cleanup functions for the character sheet.

// Dependencies:
//    (alot...)

// void init(void)
// Called to initialize the document as the body.onload handler.
function init()
{
  // Do total calculations for the skill and weight tables.
//  SkillCalcRanks();

  if (sheet().firstload.value == "true")
  {
    sheet().firstload.value = "false";
    _skillFill();
  }

  RefreshPic();
}

