Mouse Over Text - Alert
Want to annoy someone? Move your mouse over this to see how.
This is how it's done. 

<a href="" onMouseOver="alert('YOUR MESSAGE');return true;">The highlighted
text goes here</a>


JavaScript Made Easy - Main Page


--------------------------------------------------------------------------------


Mouse Over Image - Alert
Want to annoy someone using an image? Move your mouse over the picture. 
Just copy the purple stuff

<a href="" onMouseOver="alert('YOUR MESSAGE');return true;">
<IMG SRC="mixx.gif" border="0"></a>


JavaScript Made Easy - Main Page


--------------------------------------------------------------------------------


Mouse Over Text - New Window

Put your mouse over THIS to make a new window pop up.

Put these lines in your head tag. 

<SCRIPT Language='JavaScript'>
function winopen () {
msg=open("","NewWindow","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width=400,height=400");
msg.location = "YOUR LINK LOCATION"
}
</SCRIPT>
This is the text that gets highlighted. 
<a href="" onMouseOver="winopen(); return true;">TEXT GOES HERE</a>
