What do you want the sound to do? Do you want it to play when the link is clicked (sound effect) or at some other time? Or, do you want a long sound file to commence playing?
In any case, using the javascript: convention is a poor choice, this is better:
Code:
<a href="1.htm" onclick="popcontact(this.href);return false;"><font face="Verdana" size="2">
Installations</font></a>
Once you have it broken out that way, you can add to the onclick event:
Code:
<a href="1.htm" onclick="popcontact(this.href);make_noise();return false;"><font face="Verdana" size="2">
Installations</font></a>
Or, add a different event:
Code:
<a href="1.htm" onclick="popcontact(this.href);return false;" onmouseover="make_noise();"><font face="Verdana" size="2">
Installations</font></a>
Notes: make_noise(); is just a name I made up. If you have an actual function to run, use its name.
Bookmarks