function wcspOnLoad() {
  if (document.getElementById) {

    var file = document.getElementById("file");

    if (file) {
      if (file.firstChild && file.firstChild.nodeName == "IMG") {
        if (file.firstChild.width > 580) {
          var width = file.firstChild.width;
          file.firstChild.width = 580;
          file.firstChild.height = file.firstChild.height * (580/width);
        }
      }

      file.parentNode.className="file";
      if (file.nextSibling) {
        file.nextSibling.className="file_caption";
      }
    }
  }
}


