function findelement(id){
    return document.all ? document.all(id) : document.getElementById ? document.getElementById(id) : null;
}
function filterChange(){
	//findelement('szur').value = true;
	document.admin.submit();
}

//-----------------további információk átadása phpnek------------------
function clickInfo($aktcustomer, $aktProduct, $aktPiece, $aktPrice){
    findelement('idCustomer').value = $aktcustomer;
	findelement('aktProduct').value = $aktProduct;
	findelement('aktPiece').value = $aktPiece;
	findelement('aktPrice').value = $aktPrice;
	findelement('orderDate').value = $orderDate;
	document.infoform.submit();
}
