function openWindow(url, name, width, height)
{
	var idwindow = window.open(url, name, "left = " + eval((screen.width / 2) - (width / 2)) + ", top = " + eval((screen.height / 2) - (height / 2)) + ", width = "+ width +", height = "+ height +", toolbar = 0, menubar = 0, location = 0, directories = 0, scrollbars = 0, resizable = 0");
	idwindow.focus();
}

function menu_Over(text)
{
	document.getElementById(text).style.background = "#5464ff";
}

function menu_Out(text)
{
	document.getElementById(text).style.background = "#7e89f9";
}

function forAsk()
{
	if (confirm("Вы действительно хотите удалить эту позицию из заказа?"))
		return true;
	else
		return false;
}

function reCount()
{
	document.forms['basket'].action.value = "recount";
	document.forms['basket'].submit();
}


function Enter()
{
	if (document.forms['reg'].email.value.replace(/\s/g,'')=='')
	{
		alert ("Ключевое поле \"E-mail\" не заполнено!");
		return false;
	}
	else if (document.forms['reg'].pass.value.replace(/\s/g,'')=='')
	{
		alert ("Ключевое поле \"Пароль\" не заполнено!");
		return false;
	}
	else
	{
		document.forms['reg'].send_reg.disabled=true; return true;
	}
}
