// JavaScript Document
<!--
var browserName=navigator.appName; 
if (browserName=="Netscape")
{ 
window.location="../index.php";
}
else 
{ 
 if (browserName=="Microsoft Internet Explorer")
 {
  window.location="../index.php";
 }
 else
 {
  window.location="../index.php";
 }
}
//-->