<!--Script to start cursor in the first box of a form-->

<script type="text/javascript">
window.onload=function() {
document.forms[0][0].focus();
}
</script>

