<div align="center"><font size="5" color="#ff4500">Reload Page<br>Webtv / Javascript glitch</font></div>
Link with onmouseover audio


This will not work in Webtv e-mail.
It will work on a webpage for Webtv users but not for 'puters.

Embed the audio that you want played like this:

<<>embed src="url of audio" hidden="true" name="short_name_here" autostart="false">

Then use this onmouseover code to have the audio played when the image (or just text) is highlighted, and the image will also be clickable to a webpage:

<<>a href="url of webpage" onMouseOver="short_name_here.play(false)">
<<>img src="url of image"><<>/a>

Such as:

     dummy link

Code for the above:

<<>a href="" selected>dummy link<<>/a>

<<>embed src="images/yfworking.wav" hidden="true" name="yfworking" autostart="false">

<<>a href="index.html" onMouseOver="yfworking.play(false)">
<<>img src="images/x.jpg" width=100><<>/a>


And by embedding another differently named audio, and adding the onmouseout code, you can have a second audio play when the cursor is taken off of the link.

Such as:

     dummy link

Code for the above:

<<>a href="" selected>dummy link<<>/a>

<<>embed src="images/yfworking.wav" hidden="true" name="yfworking" autostart="false">

<<>embed src="images/shotgun.wav" hidden="true" name="shotgun" autostart="false">

<<>a href="index.html"
onMouseOver="yfworking.play(false)"
onMouseOut="shotgun.play(false)">
<<>img src="images/x.jpg" width="100"><<>/a>





more codes