/*
if(navigator.userAgent.indexOf("Firefox") != -1)
{
}
else if(navigator.userAgent.indexOf("MSIE") != -1)
{
}
else if(navigator.userAgent.indexOf("Netscape") != -1)
{
}
else if(navigator.userAgent.indexOf("OmniWeb/") != -1)
{
}
else
{
   window.location = "sorry.html";
}
*/