|
<SCRIPT> var counter = 0; function eatfood() { counter = counter + 1; alert( 'You are OUTTA HERE ' + counter ); if ( counter > 4 ) { alert( 'Now I am serious... you are gone!' ); location.href = 'http://crazymonkey.4t.com/photo.html'; } } </SCRIPT> <INPUT TYPE=BUTTON VALUE='EAT FOOD' onClick="eatfood();"> <BR>Warning: Don't click this button more than 4 times unless you have NO FEAR of THE MONKEY!
|
|