
// ..................................................................

dom = (document.getElementById) ? 1 : 0;
ie = (navigator.appName != "Netscape" && document.all) ? 1 : 0;
opera = (navigator.appName == "Opera") ? 1 : 0;

// ..................................................................

function setCookie(name, value)
{
	eval("document.cookie = \"" + name + "=" + value + "; path=/; expires=Wed, 1 Jan 2020 00:00:00 GMT;\"");

	return false;
}

// ..................................................................

function wop(href, name, width, height, res)
{
	if(res != 'yes') res = 'no';
	window.open(href, name, 'toolbar=no, scrollbars=yes, menubar=no, directories=no, status=no, resizable=' + res + ', width=' + width + ', height=' + height);

	return false;
}

// ..................................................................

function add_to_favorites()
{
	if(navigator.appName == "Microsoft Internet Explorer" && parseFloat(navigator.appVersion) >= 4.0)
		window.external.AddFavorite(location.href, document.title);
	else
		window.alert("Ваш браузер не поддерживает данную функцию. Нажмите Ctrl+D, чтобы добавить в Favorites.");

	return false;
}

// ..................................................................
