<!-- Begin
function blockError(){return true;}
window.onerror = blockError;
//  End -->

<!--

//Disable right click script III - No alert Message

var message="";
///////////////////////////////////
function clickIE() {if (document.all) {(message);return false;}}
function clickNS(e) {if 
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {(message);return false;}}}
if (document.layers) 
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}

document.oncontextmenu=new Function("return false")
// -->

<!-- Begin
var bgcolour="#FFFFFF"; // background colour
var hlcolour="#BFCEFF"; // highlight colour
var speed=500; // speed colours change, 1 second = 1000

// DON'T EDIT BELOW THIS LINE *
var w3c=document.getElementById;
var ie45=document.all;
var p_txt, p_cnt=0;
window.onload=function() {
  if (w3c||ie45) {
    var phone=(w3c)?document.getElementById("phonein"):document.all["phonein"];
    p_txt=(w3c)?phone.firstChild.nodeValue:phone.innerHTML;
    if (ie45) {
      var phoni="";
      for (var i=0; i<p_txt.length; i++) phoni+='<sp'+'an id="phon'+i+'">'+p_txt.charAt(i)+'</'+'span>';
      phone.innerHTML=phoni;
    } else {
      while (phone.childNodes.length) phone.removeChild(phone.childNodes[0]);
      for (var i=0; i<p_txt.length; i++) {
        var phoni=document.createElement("span");
        phoni.setAttribute("id", "phon"+i);
        phoni.appendChild(document.createTextNode(p_txt.charAt(i)));
        phone.appendChild(phoni);
      }
    }
    p_cnt=p_txt.length-1;
    phone=setInterval ("phon1()", speed);
  }
}
function phon1() {
  var p_ct=p_cnt%p_txt.length;
  var p_tmp=(w3c)?document.getElementById("phon"+p_ct):document.all["phon"+p_ct];
  p_tmp.style.backgroundColor=bgcolour;
  p_tmp.style.fontWeight="normal";
  p_ct=++p_cnt%p_txt.length;
  p_tmp=(w3c)?document.getElementById("phon"+p_ct):document.all["phon"+p_ct];
  p_tmp.style.fontWeight="bold";
  if (((w3c)?p_tmp.firstChild.nodeValue:p_tmp.innerHTML)!=" ") p_tmp.style.backgroundColor=hlcolour;
}
//  End -->

function newWindow(mypage,myname,w,h,features) {
  if(screen.width){
  var winl = (screen.width-w)/2;
  var wint = (screen.height-h)/2;
  }else{winl = 0;wint =0;}
  if (winl < 0) winl = 0;
  if (wint < 0) wint = 0;
  var settings = 'height=' + h + ',';
  settings += 'width=' + w + ',';
  settings += 'top=' + wint + ',';
  settings += 'left=' + winl + ',';
  settings += features;
  win = window.open(mypage,myname,settings);
  win.window.focus();
}
//  End -->
