function wtpopup(){
	wtpopupwin = window.open('/wt.aspx', 'wtpopup', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=400,height=250');
}


window.onload = helloWorld;

function helloWorld ()
{
  arr = document.getElementById("ppc").getElementsByTagName("a");

  for(i=0;i<arr.length;i++){
      if(arr[i].className=="ppcdescription"||arr[i].className=="ppchost"){
        arr[i].style.cursor="text";
        arr[i].removeAttribute("href");
      }
  }
}