function gotoIndex() {
var detect = navigator.userAgent.toLowerCase(); 
var browser, version, thestring; 
if (checkIt('msie')) browser = "msie";
else if (checkIt('firefox')) browser = "firefox"; 
else  if (checkIt('opera')) browser = "opera"; 
else if (!checkIt('compatible')) { browser = "netscape"; version = detect.charAt(8); }
else browser = "unknown"; 
if (!version) version = detect.charAt(place + thestring.length); 
function checkIt(string) { place = detect.indexOf(string) + 1; thestring = string; return place;}

	if (screen.width>=1024)	{
		if  (browser == "msie" || browser =="firefox" || browser=="opera") 			window.location=''+path+'index_msie768.html';
		else if(browser == "unknown") window.location=''+path+'index_stat768.html';
		else	{
			if  ((browser == "netscape")&&(version <= 4))
				window.location=''+path+'index_net768.html';
			else window.location=''+path+'index_stat768.html';
		}
	}
	else{
		if  (browser == "msie" || browser =="firefox" || browser=="opera") 
			window.location=''+path+'index_msie600.html';
		else if(browser == "unknown") window.location=''+path+'index_stat600.html';
		else	{
			if  ((browser == "netscape")&&(version <= 4))
				window.location=''+path+'index_net600.html';
			else window.location=''+path+'index_stat600.html';
		}
	}
}
