<!--
function SetNodeStyle(idParent, strMode) 
{
    if (!document.getElementById) return;
    var parent = document.getElementById(idParent);
    if (strMode == "over") {
        parent.style.cursor = "pointer";
    } else if (strMode == "out") {
        parent.style.cursor = "pointer";
    }
}

function Node_Click(idChild) 
{
    if (!document.getElementById) return;
    var child = document.getElementById(idChild);
    if (child.style.display == "none") {
        child.style.display = "block";
    } else {
        child.style.display = "none";
    }
}

function ow(url,h,w,tar,scbar){
	var sowscrollbars=scbar

win1 = window.open(url, tar, "width=" + h + ",height=" + w + ",scrollbars="+sowscrollbars);
win1.focus();

}

function NGX_closeWindow() { //v1.0
  if (self.parent.frames.length != 0) {
    self.parent.close();
  } else {
    window.close();
  }
}
// -->