function SelectCity()
{
	var o=document.getElementById('city');
	var sc=window.opener.document.getElementById('city');
	var scc=window.opener.document.getElementById('citycode');
	
	sc.value=o.options[o.options.selectedIndex].text;
	scc.value=o.options[o.options.selectedIndex].value;
	
	window.close();
	return false;
}

function OpenWnd2()
{
	var x=(window.innerWidth)?window.innerWidth:((document.all)?document.body.offsetWidth:null);
	var y=(window.innerHeight)?window.innerHeight:((document.all)?document.body.offsetHeight:null);

	var Newx=x / 2 - 250;
	var Newy=y / 2 - 60;

	window.open("templates_rus/register/city.php","","width=500,height=120,resizable=no,scrollbars=no,menubar=no,status=no,top="+Newy+",left="+Newx);
}

function CheckSklad(obj)
{
	var s=document.getElementById('sklad'+obj);
	var v=document.getElementById('part'+obj);
	
	var val=parseFloat(v.value);
	
	if(parseInt(v.value) && parseInt(v.value) > 0)
	{
		if(parseInt(v.value) > parseInt(s.value) && parseInt(s.value)!=0)
		{
			alert("Вы не можете заказать больше, чем есть на складе.");
			v.value='';
			return false;
		}
	}
	else
	{
		v.value='';
		return false;
	}
	
	return true;
}

function ShowCarMaker(obj)
{
	var o=document.getElementById('carmaker'+obj);
	var s=document.getElementById('carmaker-active');
	
	if(s.value!='' && s.value!=obj)
	{
		document.getElementById('carmaker'+s.value).style.display='none';
	}
	
	if(s.value==obj)
	{
		if(o.style.display=='block') o.style.display='none';
		else o.style.display='block';
	}
	else
	{
		o.style.display='block';
		s.value=obj;
	}
}

function OpenGroup(obj)
{
	var o=document.getElementById('group'+obj);
	var str=document.getElementById('str'+obj);
	var a=document.getElementById('a'+obj);
	
	if(o && o.style.display=='none')
	{
		o.style.display='block';
		str.src='images/group_str_on.gif';
		a.style.fontWeight='bold';
		a.style.color='#747474';		
		a.style.textDecoration='none';		
	}
	else
	{
		if(o && o.style.display=='block')
		{
			o.style.display='none';
			str.src='images/group_str.gif';
			a.style.fontWeight='normal';
			a.style.color='#0077f0';	
			a.style.textDecoration='underline';		
		}
	}
}

function Init()
{
	window.event.returnValue=false;
}

function OpenWnd(path, w, h)
{
	var x=(window.innerWidth)?window.innerWidth:((document.all)?document.body.offsetWidth:null);
	var y=(window.innerHeight)?window.innerHeight:((document.all)?document.body.offsetHeight:null);

	var Newx=x / 2 - w / 2;
	var Newy=y / 2 - h / 2;
	
	window.open('foto.php?path='+path,"Фото","width="+w+",height="+h+",resizable=no,scrollbars=no,menubar=no,status=no,top="+Newy+",left="+Newx);
}
