<!--
// Java Script 1.2
// Copyright (c) 2002, Comtype Opava, Czech Rep., comtype@comtype.cz
//
// Original name: utils.js
// Creator: Jiri Pazdernik

function LinkFill(obj, forecolor, image, imagenew, statustext) {

  if (image != "") {
    img = window.document.all[image];
    img.src = imagenew;
  }
  if (forecolor != "")
    obj.style.backgroundColor = forecolor;
  if (statustext == '') {
    window.status = ""
  } else {
    window.status = statustext
  }

}  

function LinkBorder(obj, bordercolor, image, imagenew, statustext) {

  if (image != "") {
    img = window.document.all[image];
    img.src = imagenew;
  }
  if (bordercolor != "")
    obj.style.borderColor = bordercolor;
  if (statustext == '') {
    window.status = ""
  } else {
    window.status = statustext
  }

}  

// Change current document in frame with create entry in history
function FrameDocChange(winobj, frameid, url) {
  if (url != '') {
    var obj = winobj.parent.frames[frameid];
    if (obj != null)
      obj.location.href = url
  }
}

-->
