function ButOff(VB){
VB.disabled=1;
VB.style.cursor ="default";
}
function ButOn(){
document.all("But").disabled=0;
document.all("But").style.cursor ="hand";
}
