var name = navigator.appName
 if (name == "Microsoft Internet Explorer")
url=("linksie.htm");
else
url=("linksnet.htm")
window.location=url

// You may make the redirection automatic by before using this 
// line:  document.write('<A HREF="' + url + '">Enter</A>');   
// instead of the window.location=url above 

