var timeouthandle

function tandcs() {
  window.open("tsandcs.aspx","tandcs","height=600,width=790,status=no,toolbar=no,menubar=no,location=no,scrolling=yes,scrollbars");
}

function printThisPage(id,type) {
  eval('window.open("article_default_print.aspx?articleid=' + id + '&type=' + type + '","Verisign","height=600,width=680,status=no,toolbar=no,menubar=no,location=no,scrolling=yes,scrollbars")');
}

function mouseMove(ev) {
    if (window.event) { ev = window.event; } else { ev = ev; }
    if (ev.pageY) {
        mouseXPos = ev.pageX;
        mouseYPos = ev.pageY;
    } else {
        mouseXPos = ev.clientX + document.body.scrollLeft - document.body.clientLeft;
        mouseYPos = ev.clientY + document.body.scrollTop - document.body.clientTop;
    }
}

function HideShowLayer(LayerName, LayerProperty) {
    if (PageIsLoaded) {
        if (document.getElementById) {
            //W3C Compliant
            eval('if ( document.getElementById("' + LayerName + '")) { document.getElementById("' + LayerName + '").style.visibility = "' + LayerProperty + '"; }');
        } else if (document.all) {
            //IE4
            eval('if ( document.all.' + LayerName + ') { document.all.' + LayerName + '.style.visibility = "' + LayerProperty + '"; } ');
        }
    }
}

function selectvisibility(showme) {
  
  //Internet explorer 6 and lower cannot display a layer of a select box.
  
  //var aS = document.getElementsByTagName("select");
  //var iN = aS.length;
  
  //if (document.all) {
  //  for(i=0; i < iN; i ++) {
  //    if (showme == 0) {aS[i].style.visibility = "hidden";}
  //    else if (showme == 1) {aS[i].style.visibility = "visible";}
  //  }
  //}
  
}