
function SetUp()
{
  var oRw, oC, oIm, oTbl, oTmp;

  if(document.layers){
    document.captureEvents(Event.MOUSEDOWN);
    document.onmousedown=clickNS4;
    alert("1");
  }
  else if (document.all&&!document.getElementById){
    document.onmousedown=clickIE4;
    alert("2");
  }

  document.oncontextmenu = new Function("return false");
  document.body.ondragstart = new Function("return false");
  document.body.onselectstart = new Function("return false");
  
  document.body.style.fontName = "Arial";
  document.body.style.border = 0;
  document.body.style.padding = 0;
  document.body.style.margin = 0;

  oTmp = document.createElement("center");
  document.body.appendChild(oTmp);
  oTbl = document.createElement("table");
  oTmp.appendChild(oTbl);
  oTbl.width = "1050px";
  oTbl.cellpadding = 0;
  oTbl.cellspacing = 0;
  oTbl.border = 0;
  oTbl.style.textAlign = "left";
  oRw = oTbl.insertRow(-1);
  oRw.style.height = "38px";
  oC = oRw.insertCell(-1);
  oC.style.backgroundColor = "#007070";
  oC.innerHTML = "&nbsp;";
  oRw = oTbl.insertRow(-1);
  oRw.valign = "middle";
  oC = oRw.insertCell(-1);
  oC.style.paddingLeft = "148px";
  oIm = document.createElement("img");
  oIm.src = "http://yob/cavendish/images/CavendishLogo.jpg";
  oIm.style.height = "72px";
  oIm.style.width = "287px";
  oIm.onload = new Function("window.location.href = \"http://217.34.56.85\";");
  oIm.style.padding = "7px";
  oC.appendChild(oIm);
  oRw = oTbl.insertRow(-1);
  oRw.style.height = "34px";
  oRw.valign = "top";
  oC = oRw.insertCell(-1);
  oC.style.backgroundColor = "#008080";
  oC.style.color = "white";
  oC.style.paddingLeft = "205px";
  oC.style.fontSize = "19pt";
  oC.style.fontFamily = "Calibri";
  oC.innerHTML = "the&nbsp;call&nbsp;handling&nbsp;specialists";
  oRw = oTbl.insertRow(-1);
  oC = oRw.insertCell(-1);
  oC.innerHTML = "&nbsp;"  
  oRw = oTbl.insertRow(-1);
  oC = oRw.insertCell(-1);
  oC.innerHTML = "&nbsp;"
  oRw = oTbl.insertRow(-1);
  oC = oRw.insertCell(-1);
  oC.innerHTML = "&nbsp;"
  oRw = oTbl.insertRow(-1);
  oC = oRw.insertCell(-1);
  oC.innerHTML = "If you are not redirected in the next 15 seconds please click the following link: <a href='http://217.34.56.85'>Cavendish</a>"
}


function clickIE4(){ if (event.button==2){ return false; } }


function clickNS4(e){
  if(document.layers||document.getElementById&&!document.all){
    if(e.which==2||e.which==3){ return false; }
  }
}


