stylesFnd = 0 ; maxCheck = 40
//
if (document.styleSheets) {checkforTV()}
//
function checkforTV() {
  if (stylesFnd != document.styleSheets.length) {removeTV() ; stylesFnd = document.styleSheets.length}
  maxCheck -- ; if (maxCheck > 0) {window.setTimeout ("checkforTV()",1500)}
}
//
function removeTV () {
  for (ij = 0; ij <= document.styleSheets.length -1; ij ++) {
    if (document.styleSheets(ij).href.indexOf("thirdvoice.com") != -1) {document.styleSheets(ij).disabled = true}
    if (document.styleSheets(ij).href.indexOf("BrowserUI1.css") != -1) {document.styleSheets(ij).disabled = true}
  }
}