/* Browser Information - COPYRIGHT STATEMENT All rights reserved.
2004(C) Copyright Operational Research Consultants Inc. 
(ORC) All JavaScript Code within this document may be reproduced
or modified by including the following header within your document */

/* JavaScript Developed for External Certificate Authority.

2004(C) Copyright Operational Research Consultants, Inc. (ORC)
http://www.orc.com */



function whatbrowser() 
{ 
//begin function
 var validbrowser = true;
 var gotourl = "othercheck.html";
 var browserVersion = parseFloat(navigator.appVersion);
 var agents = navigator.userAgent.indexOf("Mozilla/4.0") != -1;
 var isNetscape4 = navigator.appName.indexOf("Netscape") != -1;
 var isIE = navigator.appName.indexOf("Microsoft") != -1;
 
 
if ((navigator.userAgent.indexOf("MSIE 5.5") >=0) || (navigator.userAgent.indexOf("MSIE 6.0") >=0) || (navigator.userAgent.indexOf("MSIE 7.0") >=0)){
 
	 { 
	   gotourl="acceptMSIE.html";
	   validbrowser=true;
	 }
	 
 }else if ((navigator.userAgent.indexOf("Mozilla/4.7") >=0) ||
		   (navigator.userAgent.indexOf("Mozilla/4.8") >=0) ||
		   (navigator.userAgent.indexOf("Mozilla/5.0") >=0) ||
		   (navigator.userAgent.indexOf("Netscape/7") >=0))
		   
	 { 
	   gotourl="accept.html";
	   validbrowser=true;
	 }

location.replace(gotourl);
//End IF


} //End function
        



