function addBookmark()
{
	var url   = location.href;
	var title = 'Gasis.ru - ' + document.title;

	//Gecko
	if ((typeof window.sidebar == "object") && (typeof window.sidebar.addPanel == "function"))
	{
		window.sidebar.addPanel(title, url, "");
	}
	//IE4+
	else if (typeof window.external == "object")
	{
		window.external.AddFavorite(url, title);
	}
	//Opera7+
	else if (window.opera && document.createElement)
	{
		var href = document.createElement('a');
		if (!href) return false; //IF Opera 6
		href.setAttribute('rel',   'sidebar');
		href.setAttribute('href',  url);
		href.setAttribute('title', title);
		href.click();
	}
	else
	{
		return false;
	}

	return true;
}

var table_cyr_to_lat = new Array();

table_cyr_to_lat['¸'] = '`';
table_cyr_to_lat['é'] = 'q';
table_cyr_to_lat['ö'] = 'w';
table_cyr_to_lat['ó'] = 'e';
table_cyr_to_lat['ê'] = 'r';
table_cyr_to_lat['å'] = 't';
table_cyr_to_lat['í'] = 'y';
table_cyr_to_lat['ã'] = 'u';
table_cyr_to_lat['ø'] = 'i';
table_cyr_to_lat['ù'] = 'o';
table_cyr_to_lat['ç'] = 'p';
table_cyr_to_lat['õ'] = '[';
table_cyr_to_lat['ú'] = ']';
table_cyr_to_lat['ô'] = 'a';
table_cyr_to_lat['û'] = 's';
table_cyr_to_lat['â'] = 'd';
table_cyr_to_lat['à'] = 'f';
table_cyr_to_lat['ï'] = 'g';
table_cyr_to_lat['ð'] = 'h';
table_cyr_to_lat['î'] = 'j';
table_cyr_to_lat['ë'] = 'k';
table_cyr_to_lat['ä'] = 'l';
table_cyr_to_lat['æ'] = ';';
table_cyr_to_lat['ý'] = "'";
table_cyr_to_lat['ÿ'] = 'z';
table_cyr_to_lat['÷'] = 'x';
table_cyr_to_lat['ñ'] = 'c';
table_cyr_to_lat['ì'] = 'v';
table_cyr_to_lat['è'] = 'b';
table_cyr_to_lat['ò'] = 'n';
table_cyr_to_lat['ü'] = 'm';
table_cyr_to_lat['á'] = ',';
table_cyr_to_lat['þ'] = '.';
table_cyr_to_lat['"'] = '@';