function loginShow(){
	// Закрываем перемотку body
	document.body.style.overflow = "hidden";

	// Убираем все flash
	for (i = 0; i < document.embeds.length; i++)
		document.embeds[i].wmode = "transparent";

	// Задаем размеры
	document.getElementById("form-login").style.top = document.body.scrollTop;
	document.getElementById("form-login").style.height = document.body.clientHeight;

	document.getElementById("bground-login").style.height = document.body.scrollHeight;

	// Отображаем
	document.getElementById("login").style.display = "block";
}

function loginClose(){
	// Разрешаем перемотку body
	document.body.style.overflow = "auto";

	// Скрываем
	document.getElementById("login").style.display = "none";
}

function a2login(){
	document.getElementById("a2login").href = "http://89.184.25.136:7777/apex/AUTH?USER=" + document.getElementById('input-login').value + "&PASS=" + document.getElementById('input-password').value;
}
