function doexpand()
{
	document.getElementById('reklamaEX').style.width = '250';
	document.getElementById('reklamaEX').style.height = '250';
	document.getElementById('reklamaEX').style.clip = 'rect(0px, 250px, 250px, 0px)';
}
function dolittle()
{
	document.getElementById('reklamaEX').style.width = '120';
	document.getElementById('reklamaEX').style.height = '90';
	document.getElementById('reklamaEX').style.clip = 'rect(0px, 120px, 90px, 0px)';
}

function do_print(id)
{
	if(id)
	{
		eval('document.frm'+id+'.action = \'dachoferta\';');
		eval('document.frm'+id+'.no_save.value = \'1\';');
		eval('document.frm'+id+'.act.value = \'print\';');
		eval('document.frm'+id+'.submit();');
	}
	else
	{
		document.form.action = 'dachoferta';
		document.form.no_save.value = '1';
		document.form.act.value = 'print';
		document.form.submit();
	}
}
function do_edit(id)
{
	if(id)
	{
		eval('document.frm'+id+'.action = \'dachoferta\';');
		eval('document.frm'+id+'.act.value = \'edit\';');
		eval('document.frm'+id+'.submit();');
	}
	else
	{
		document.form.action = 'dachoferta';
		document.form.act.value = 'edit';
		document.form.submit();
	}
}
function do_save(id)
{
	document.form.act.value = 'save';
	document.form.submit();
}
function do_new(id)
{
	if(id)
	{
		eval('document.frm'+id+'.action = \'dachoferta\';');
		eval('document.frm'+id+'.no_save.value = \'1\';');
		eval('document.frm'+id+'.act.value = \'edit\';');
		eval('document.frm'+id+'.submit();');
	}
	else
	{
		document.form.action = 'dachoferta';
		document.form.no_save.value = '1';
		document.form.act.value = 'edit';
		document.form.submit();
	}
}
function do_delete(id)
{
	alert("Przepraszamy. Funkcjonalność jest w tej chwili nieaktywna.");
}