

var loc="index2.html";


  if (top.frames.length == 0) 
  {

	
	
        document.cookie = "newURL=" + escape(document.URL) + "; path=/;";
	

    ver = parseInt(navigator.appVersion, 10);
    if ( ((navigator.appName == "Netscape") && (ver >= 3)) ||
         ((navigator.appName == "Microsoft Internet Explorer") && (ver >= 4)) )
      location.replace(loc);
    else
      location = loc;
    }



