

function resetSearchForm() {
	if (document.getElementById('cat')) document.getElementById('cat').value='';
	if (document.getElementById('st1')) document.getElementById('st1').value='';
	if (document.getElementById('st2')) document.getElementById('st2').value='';
	if (document.getElementById('stk1')) document.getElementById('stk1').value='';
	if (document.getElementById('stk2')) document.getElementById('stk2').value='';
	if (document.getElementById('sbel')) document.getElementById('sbel').value='';
	if (document.getElementById('sbf')) document.getElementById('sbf').value='';
	if (document.getElementById('sww')) document.getElementById('sww').value='';
}

function reloadList() {
	window.opener.location.href=window.opener.location.href;
	window.self.close();
}

function toggleID(status,id,id2) {
	if (document.getElementById(id)) {
		if (status == true) {
			document.getElementById(id).style.display = "inline";
			if (id2) {
				document.getElementById(id2).checked = false;
			}
		} else {
			document.getElementById(id).style.display = "none";
		}
	}
}

function toggleRow(id) {
    if (document.getElementById(id)) {
        if (document.getElementById(id).style.visibility == 'hidden') {
            document.getElementById(id).style.visibility = "visible";
            document.getElementById('table' + id).style.display = "block";
        } else {
            document.getElementById(id).style.visibility = "hidden";
            document.getElementById('table' + id).style.display = "none";
        }
    }
}