t;SCRIPT LANGUAGE="JavaScript">
function butPress(time)
{
if (time == 1)
{
alert("Ow!! That hurt! Why on Earth did you do that???\n\nYou're a
BIG FAT MEANY!!");
document.form1.butPressMe.value="Well, I guess you can press me...";
document.form1.butPressMe.onclick="butPress(2)";
}
else
{
alert("end");
}
}
</SCRIPT>
</HEAD>
<BODY BGCOLOR="#000000" TEXT="#FFFFFF">
<DIV ALIGN="CENTER">
<FORM NAME="form1">
<INPUT TYPE="button" NAME="butPressMe" VALUE="Please Press Me--I'm Begging
You!!" onclick="butPress(1)">
</FORM>
</BODY>
</HTML>
Message #2 by "Kirk Sculland" <ksculland@h...> on Fri, 29 Mar 2002 00:37:18
In the form you hav |