/***********************************************
* Checkbox de/markieren
***********************************************/

function checkbox(id, typ)
	{
	field = document.getElementById(id);
	if (field.checked == true && typ!="radio") field.checked=false;
	else field.checked=true;
	}


/***********************************************
* Inline-Popup ausblenden
***********************************************/

function unload(id)
	{
	$('#' + id).html('');
	$('#' + id).hide();
	}
