function cursor_wait() {
//document.body.style.cursor = 'wait';
//document.layimage1.visibility="show";
}

function cursor_clear() {
if (document.layers){
document.layimage1.visibility="hide"
}
else if(document.all||document.getElementById){
(document.getElementById)?
nct=document.getElementById("docimage")
: nct=document.all.docimage
nct.style.visibility="hidden";
}
}

cursor_wait();

