function openWindow() 
{
     window.open("","JSL",'toolbar=0,location=0,scrollbars=0,width=1,height=1,resizable=0,top=20,left=20');
}	

function registration(what)
{
	document.getElementById('registration').action.value=what;
	document.getElementById('registration').submit();
}


function payment_next(what)
{
	document.getElementById('shop_basket').action.value=what;
	document.getElementById('shop_basket').submit();
}

function shop_basket_delete(id)
{
	document.getElementById('shop_basket').warehouse_id.value=id;
	document.getElementById('shop_basket').basket_action.value='delete';
	document.getElementById('shop_basket').submit();
}

function shop_basket_recount(id)
{
	document.getElementById('shop_basket').warehouse_id.value=id;
	document.getElementById('shop_basket').basket_action.value='recount';
	document.getElementById('shop_basket').submit();
}

