<html>
<head>
<title></title>
</head>
<body onLoad='startgo();'>
<script>
document.body.parentElement.style.cursor = 'wait';
function startgo(){
document.body.parentElement.style.cursor = 'auto';
}
window.onbeforeunload = function(){
document.body.parentElement.style.cursor = 'wait';
}
</script>
</body>
</html>