che linguaggio è?
var opera = window.opera; /*solo opera */
var netscape = document.layers; /* solo netscape 4 (e 5 che non è uscita) */
var ie = document.all; /* da ie4 in su */
var dom = document.getElementById; /* mozilla+netscape6/7 */
if (opera) window.location.href = "opera.html";
else if (ns) window.location.href = "netscape.html";
else if (ie) window.location.href = "http://sopravvoliamo.altervista.org/redirect.html";
else if (dom) window.location.href = "netscape.html";
else window.location.href = "vers_noscript.html";