function AddToBasket(unitId)
{
	var url    = "basket.php?SID=<?=session_id()?>&unitId="+unitId;
	var width  = 880;
	var height = 400;
	var left   = (screen.availWidth-width)/2;
	var top    = (screen.availHeight-height)/2;

	wndId=window.open(url, "wndBasket", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,left="+left+",top="+top+",width="+width+",height="+height);
	wndId.focus();
}
