p2p.wrox.com - beginning_javascript archive
Our web spider found the following code snippet at p2p_wrox_com and contains information about asin and JavaScript.
t;script language="JavaScript" type="text/javascript" src="mouseover.js">
</script>
<script language="JavaScript" type="text/javascript" src="help.js">
</script>

but only 'mouseover' works in the page and not 'help'. Is there anyway 
that I can include 2 or more external JS in one page? Thanks Tom
PS- I have included my code from the external JS:

var MyEvent
function EventOverNN(e)
{
 var MySrcElement = e?e.target:window.event.srcElement
 if(MySrcElement.tagName == "TR")
 {
  MyEvent = MySrcElement
 }
 else if(MySrcElement.parentNode.tagName == "TR")
 {
  MyEvent = MySrcElement.parentNode
 }
 if(MyEvent)
 {
  MyEvent.style.backgroundColor = "#E8E8E8";
  MyEvent.style.color = "#000099";
  MyAnchors = MyEvent.getElement
Read the entire article....