<script language = javascript>

// This function will turn the cursor into an hour glass

// It should be called from the BODY Tag like this:  onbeforeunload="doHourglass();" onunload="doHourglass();"

// ***********************************************************************************************************

      function doHourglass()

{

  document.body.style.cursor = 'wait';

}

 // End hourglass code...

</script>