function start(){
	setTimeout("browserCheck()",0);
}

function browserCheck()
{
	var BV=parseFloat(navigator.appVersion.indexOf("MSIE")>0?navigator.appVersion.split(";")[1].substr(6):navigator.appVersion);
	var BN=navigator.appName;
	var IsWin=(navigator.userAgent.indexOf('Win')!=-1);
	var IsMac=(navigator.userAgent.indexOf('Mac')!=-1);
	var KQ=(BN.indexOf('Konqueror')!=-1&&(BV>=5))?true:false;
	var OP=(navigator.userAgent.indexOf('Opera')!=-1&&BV>=4)?true:false;
	var NS=(BN.indexOf('Netscape')!=-1&&(BV>=4&&BV<5)&&!OP)?true:false;
	var SM=(BN.indexOf('Netscape')!=-1&&(BV>=5)||OP)?true:false;
	var IE=(BN.indexOf('Explorer')!=-1&&(BV>=4)||SM||KQ)?true:false;
	
	//window.alert("isWin: "+IsWin+"\nIsMac: "+IsMac+"\nKQ: "+KQ+"\nOP: "+OP+"\nNS: "+NS+"\nSM: "+SM+"\nIE: "+IE);
	
	if (OP)
	{
		top.location.href ="index_op.html";
	}
	else if(NS || SM)
	{
		parent.location.href ="index_ns.html";
	}
	else if(IE || KQ)
	{
		parent.location.href ="index_ie.html";
	}
	else
	{
		parent.location.href ="newbrowser.html";
	}
}
