I had almost the same problem not long ago. Using .href should fix it, as in

if (window != top) 
top.location.href = self.document.location.href 

or even (what I use)
top.location.href = location.href


| function onload(event) {
|     if (self != top) {
|         top.location = self.document.location;
|     }
| }
| 
| undefined



---
You are currently subscribed to e-gold-list as: archive@jab.org
To unsubscribe send a blank email to [EMAIL PROTECTED]

Reply via email to