function nwnd(Name)
{
	window.open(Name,"new","toolbar=no,scrollbars=yes,directories=no,status=no,menubar=no,resizable=yes,location=no,width=480,height=400");
}

function createCookie(name,value,days)
{
	if (days)
	{
		var date = new Date();
		date.setTime(date.getTime()+(days*24*60*60*1000));
		var expires = "; expires="+date.toGMTString();
	}
	else var expires = "";
	document.cookie = name+"="+value+expires+"; path=/";
}

function readCookie(name)
{
	var nameEQ = name + "=";
	var ca = document.cookie.split(';');
	for(var i=0;i < ca.length;i++)
	{
		var c = ca[i];
		while (c.charAt(0)==' ') c = c.substring(1,c.length);
		if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
	}
	return null;
}

function eraseCookie(name)
{
	createCookie(name,"",-1);
}

function toggle_tr(Name)
{
	tr = document.getElementById(Name);
	if (tr.style.display == '')
	{
		tr.style.display = 'none';
		eraseCookie(Name);
	}	
	else 
	{
		tr.style.display = '';
		createCookie(Name, "hide", 1);
	}	
}

function unhideToggles(list)
{
	for(i = 0; i < list.length; i++)
	{
		if (readCookie(list[i])) toggle_tr(list[i]);
	}
}

function redirect() 
{
	if (SRadio == '') alert("Выберите один из вышеперечисленных пунктов!");
	if (document.regmail.b[0].checked) window.location ="?do=register&stage=1&why=buy";
	if (document.regmail.b[1].checked) window.location ="?do=register&stage=1&why=sell";
	if (document.regmail.b[2].checked) window.location ="";
	if (document.regmail.b[3].checked) window.location ="mailto:" + one + "@" + two + "?subject=Заявка на регистрацию";
}

function bigpix(pix) 
{
openwin = window.open("?do=bigpix&item="+pix,"bigpix","width=516,height=516,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,left=0,top=0");
}

