View Single Post
  #9 (permalink)  
Old 10-17-2006, 01:35 PM
smith smith is offline
Programmer
 
Join Date: Jun 2006
Posts: 108
Credits: 0
Rep Power: 10
smith is on a distinguished road
Default

The problem turned out to be your link function. Ok, problem solved. You need to change your goToLink() function to this:

Code:
function goToLink() { 
	var x=document.getElementsByName("dynalink");
	x.href = link;
}
and it will work fine.
__________________
Code:
for (int i;;) {
   cout << "Smith";
}
Reply With Quote