Hello,
Take a look at this:
----------------------------------------
var ns4 = (document.layers) ? 1 : 0;
var ie4 = (document.all) ? 1 : 0;
var ns6 = (document.getElementById && !document.all) ? 1 : 0;
if(ns6) {
document.getElementById('linkcountry01').href='http://www.google.com';
...
else if(ns4) {
document.XXX('linkcountry01').href='http://www.google.com';
...
else if(ie4) {
document.all('linkcountry01').href='http://www.google.com';
...
-----------------------------------------------
what do i need to put in the place of the XXX if you know
that 'linkcountry01' is the "name" of a link-tag.
Regards,
Eric Culus