ooooooops! just noticed a typo, sorry!
it should be
javascript:void(0);
: erm, something like this might work...?
:
: <script>
: var nothingsHappened = true //this is boolean, it'll go to false
: //when something happens
:
: document.onMouseMove = "nothingsHappened=false";
: document.onKeyPress = "nothingsHappened=false";
:
: function decide() {
: if (nothingsHappened==false)
: {
: moveMe("http://www.paulfp.co.uk/dzine");
: }
: else {
: javascriptLvoid(0);
: }
: }
:
: function moveMe(url) {
: window.location.href = url;
: }
: </script>
: <body onLoad ="setTimeOut('decide();', 6000");">
:
: I haven't tested this, so the syntax might be slightly wrong but I think you'll get the general idea. Change 6000 to the number of milliseconds you want to wait (ie. 6000 is 6secs).
:
: hope this helps!
:
: God bless
: =====
: paulfp
: www.paulfp.co.uk/delirious
:
: