/**
 * 30.10.08
 */

function Shiteki(){
	var UAgentOpera = window.navigator.userAgent.indexOf("Opera");
	var UAgentFire = window.navigator.userAgent.indexOf("Firefox");
	var UAgentSHIeT = window.navigator.userAgent.indexOf("MSIE");
	var UAgentSafari=window.navigator.userAgent.indexOf("Safari");
	if ((UAgentSHIeT > 0) && (document.all) && (typeof navigator.mimeTypes['*'] == "undefined") && window.external && !window.addEventListener && window.attachEvent && window.ActiveXObject && !window.XMLHttpRequest && document.compatMode) {
		return "shit6";
	}
	
	if ((UAgentSHIeT > 0) && (document.all) && (typeof navigator.mimeTypes['*'] == "undefined") && window.external && !window.addEventListener && window.attachEvent && window.ActiveXObject && window.XMLHttpRequest && document.compatMode && !document.documentMode) {
		return "shit7";
	}
	
	if ((UAgentSHIeT > 0) && (document.all) && (typeof navigator.mimeTypes['*'] == "undefined") && window.external && !window.addEventListener && window.attachEvent && window.ActiveXObject && window.XMLHttpRequest && document.compatMode && document.documentMode) {
		return "shit8";
	}

	if ((UAgentFire > 0) && !(document.all) && (typeof navigator.mimeTypes['*'] != "undefined") && window.external && window.addEventListener && !window.attachEvent && window.XMLHttpRequest) {
		return "Firefox";
	}
	if ((UAgentOpera >= 0) && (typeof document.all != "undefined") && (typeof navigator.mimeTypes['*'] == "undefined") && (!window.external) && (typeof window.addEventListener != "undefined") && (typeof window.attachEvent != "undefined") && (typeof window.XMLHttpRequest != "undefined")) {
		return "Opera";
	}
	
	if((UAgentSafari>0) && (typeof document.all == "undefined") && (typeof navigator.mimeTypes['*'] == "undefined") && (!window.external) && (typeof window.addEventListener != "undefined") && (typeof window.attachEvent == "undefined") && (typeof window.XMLHttpRequest != "undefined"))
	{
		
	return "Safari";
	}
	
return false;
}