
// Browserswitch: IE < 5 / NS < 6
if (!document.getElementById && !document.all)
{
	window.location="../browser.htm";
}


//  Useage of IE4 (compatible installation):
if (  navigator.appVersion.indexOf('MSIE 4')!=-1  && navigator.appVersion.indexOf('compatible;')!=-1 ) 
{ 
	window.location="../browser.htm";  
}


// !OPTIONAL!
//  Browserswitch: NS == 6 
// May be used if there are functional limitations with NS 6 
// if not used: deactivate corresponding script on page browser.htm!
// if (navigator.userAgent.indexOf('Gecko')!=-1) 
//{
//	window.location="../browser.htm";
//}

