<!-- hide from old browsers
//Disable drag and drop link in Netscape
// window.ondragdrop = function (evt) { return false; };

// Disable right-click feature in NN6, NN4, IE5

//isIE4 = (document.all) ? true : false;
//isW3C = (document.getElementById && !isIE4) ? true : false;
//isNN4 = (document.layers) ? true : false;

//function rightClickDown(e) { return (e.which == 3) ? putAlert() : true; }

//function putAlert() { 
//	return false;
//}

//if (isIE4) document.oncontextmenu=putAlert;

//if (isW3C) document.onmouseup=rightClickDown;

//if (isNN4) {
//    window.captureEvents(Event.MOUSEDOWN);
//    window.onmousedown=rightClickDown;
//}


// New Code to Disable Right-Click Function

//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){
      //alert(message);
//      return false;
//    }
//  }
//}

//if (document.layers){
//  document.captureEvents(Event.MOUSEDOWN);
//  document.onmousedown=clickNS4;
//}
//else if (document.all&&!document.getElementById){
//       document.onmousedown=clickIE4;
//     }

// document.oncontextmenu=new Function("return false");


//Disable drag and drop link in Netscape
window.ondragdrop = function (evt) { return false; };

var count = 0;
// Change the number after delay to change scroll speed. 
// Higher number equals slower scroll.
var delay = 0;
// text between quotes will display in the status window. 
// Leave blank spaces after text.
var text = "                                           ";

function  scroll() {
       window.status = text.substring (count, text.length) + text.substring (0, count)
        if (count < text.length)
                count ++;
        else
                count = 0;
        setTimeout ("scroll()", delay);
}
// end hiding -->