// JavaScript Document



function onLineAvailClick(obj,code,clientCode,showDetailInfo,posX,posY)
{
	var id = 1	
	var e = getE("onlineAvailWin");

	e.style.display="" ;
	//getE("onlineAvailWinIn").innerHTML = "";
	e.style.top = topScroll()+(posY - 200)+'px';
//	e.style.left = (posX-360 )+'px';
	e.style.left = (110 )+'px';

	var ajax = new Ajax('/online/online_availBack.aspx?showdetail='+ showDetailInfo +'&id=' + id + '&task=update&code=' + code + '&clientCode=' + clientCode + '&konec=' + Math.random(), 'get', cbf);
	ajax.sendRQ( '' , true );
}

function cbf(code)
{
	eval(code);
}

function onLineAvailResult(id,count,innerHtml)
{
	
	if(count=='error')
	{
		alert('Při zjišťování stavu skladu došlo k chybě.\nZkuste to později.');
		return;
	}
	getE("onlineAvailWinIn").innerHTML =innerHtml
	
}
function hideOnLineAvail(){
 getE("onlineAvailWin").style.display="none";
}

// semafor v kosiku
function setSemfr(s){
 
 	document.getElementById("idDo").value = ""; 
	getE("strnAccID").value = s;
	getE("OrderForm").submit();
}

