//Определение названия и версии броузера
function BrowserDetector()
{
		this.dom = (document.getElementById)? true : false;
		this.dhtml = (document.all && !this.dom)? true : false;
        this.nn4=(document.layers&&!this.dom)? true : false;
        this.ie4 = (document.all && !this.dom)? true : false;
        this.explorer = (document.all)? true : false;
        this.opera5 = (navigator.userAgent.search(/opera.?5/i) >= 0)? true : false;
		this.opera7 = (navigator.userAgent.search(/opera.?[789]/i) >= 0)? true : false;
        this.mlin = (navigator.userAgent.search(/mozilla.*linux/i) >= 0)? true : false;
}

