Browser Type Redirection

Use this code to redirect your visitors to the web page that works best for their browser.




Put this between your HEAD-tags
<SCRIPT LANGUAGE='JAVASCRIPT' TYPE='TEXT/JAVASCRIPT'>
<!--
if ((navigator.appName=="Microsoft Internet Explorer") || (navigator.appName=="Netscape"))
{
if (navigator.appName=="Microsoft Internet Explorer")
window.location = "explorer.htm";
else
window.location = "netscape.htm";
}
else
window.location = "other.htm";
//-->
</script>

Free JavaScripts provided
by Winfolinx.com


Back