/*	Набор необходимых скриптов для Octopus
	(c) Copyright Siorre.ru creative group | Авторское право Siorre.ru
	Исп. редактор EditPlus2. Значение табуляции "4", значение отступа "4"	*/

/*	JSLib : Определение браузера и его версии */

function AppInf()
{
	with (navigator)
	{
		/*	Полное регулярное выражение для UserAgent :
			/\).*?(firefox|gecko|opera).*(firefox|.*?).*?/g;	*/
		this.regExp = /(firefox|gecko|opera)/g
		this.result = userAgent.toLowerCase().match(this.regExp)

		this.userAgent = (this.result) ? this.result.toString() : ""
		this.name = "opera"

		if (this.userAgent.indexOf("firefox")!=-1 ||
			this.userAgent.indexOf("gecko")!=-1)
			this.name = "n"
		else
			if (this.userAgent.indexOf("opera")==-1 &&
				appName.indexOf("Microsoft")!=-1)
				if (appVersion.indexOf('Mac')==-1)
					this.name = "ie"
				else
					this.name = "ieMac"
	}	
}
var appInf = new AppInf()
/*	Разрешение экрана (только для сайта Истории) */
appInf.scrW = (window.self.screen.width)
	? window.self.screen.width : 1024
appInf.scrH = (window.self.screen.height)
	? window.self.screen.height : 768