<!-- ©webmasta [www.w3coders.com]



 mOut ='This is a Full Standards Compliant Website.     \nYour present browser is too old for our web site to display properly.     \n\nAcceptable Browsers are :' +'\n\n'+

       'Internet Explorer 5+' +'\n'+ 'Netscape 6+' +'\n'+ 'AOL 6+\n\n'+

       'We\'re Sorry for the inconvenience.\n\n';



//block 

//Mozilla/2.0 (compatible; MS FrontPage 4.0) == downloader

//Mozilla/3.0 (compatible; WebCapture 2.0; Windows)

//this list goes on ...



 nav =navigator;



 function getMessage() {

  alert(mOut);  top.location.replace('xx-browserError.htm');  //top.location.replace('index.htm');

         return false;

        };



 function stop_DeadBeats()

 {

 	nav.version =0; pos=0; agt =navigator.userAgent.toLowerCase();
	if(	agt.indexOf('firefox')	!=-1)
	{return true;}

	if(

		agt.indexOf('opera')     !=-1 ||

		agt.indexOf('spoofer')   !=-1 ||

		agt.indexOf('webtv')     !=-1 ||

		agt.indexOf('hotjava')   !=-1 ||

		agt.indexOf('konqueror') !=-1 

		)                  

	return getMessage();



	if ((pos = agt.indexOf('msie')) != -1 ) {

		nav.version = parseFloat('0' + agt.substr(pos+5), 10);

		if (nav.version < 5) {                               //allow IE 5+

			return getMessage(); 

		} return true;

	};



	if ((pos = agt.indexOf('aol')) != -1) {

		nav.version = parseFloat('0' + agt.substr(pos+4), 10);

			if (nav.version < 5) {                            //allow aol 6+

				return getMessage();

			} return true;

	};



	if (agt.indexOf('gecko') !=-1) { 

		pos =agt.lastIndexOf('/'); 

		nav.version = parseFloat('0' + agt.substr(pos+1), 10);

			if (nav.version < 6) {                            //allow gecko 6+  

				return getMessage(); 

			} return true; 

	};



	if (agt.indexOf('mozilla')!=-1) {                      //no netscrap garbage

		return getMessage(); 

	} return true; 

	

	if (agt.indexOf('netscape')!=-1) {                                  

		return getMessage(); 

	} return true; 

	
	if (agt.indexOf('opera')!=-1) {                                  

		return getMessage(); 

	} return true; 


 };



  stop_DeadBeats();



//--></script>


