Re: Need help with window open and refreshing
If you wish to reload the page on every second, you could use the "meta refresh tag".
For disabling the F5 key, you might find this code useful:
[code:34gvbmn4]
<script type="text/javascript">
function checkKeyCode(evt) {
var evt = (evt) ? evt : ((event) ? event : null);
if(evt.keyCode==116) {
evt.preventDefault();
return false
}
}
document.onkeydown=checkKeyCode;
</script>
[/code:34gvbmn4]