<html>
<head>
<title>wave</title>

<Style type = "text/css">

 Span { width: 600 }
 .big { color: blue;
	font-family: monotype corsiva;
	font-size: 50pt;
	font-weight: bold}

</style>

<!--start javascript put in header-->

<script language = "JavaScript">

<!--Ben Eagle-->
<!--Insation-->
<!--you can use this on your web page as long as this stays in the script along with athors name-->

	var TimerID;
	var updown = true;
	var str = 1;

	function start()
	{
	  TimerID = window.setInterval( "wave()", 100 );
	}

	function wave()
	{
	  if ( str > 20 || str < 1 )
		updown = !updown;

	  if ( updown )
		str++;
	   else
		str--;

	wft.filters( "wave" ).phase = str * 20;
	wft.filters( "wave" ).strength = str;
	}

</Script>
<!--end script end header-->

</head>



<body onload = "start()"><!--onload must go in body tag, this calls start method-->

<span onclick = "window.clearInterval( TimerID )" ID = "wft" Style = "filter:wave(add=0, freq=4, light=0, phase=0, strength=5)">

<p class = "big" align = "center"> Z Is the Man !<p></span>


