function open_link(url) { location.href = url; }

function open_link_onchange(sel, base_url)
{
	value = sel.options[sel.selectedIndex].value;
	if(value > 0) { open_link(base_url + value); }
}

function destroy(name, id)
{
	var agree = confirm('Are you sure?');
	if(agree)
	{
		var agree2 = confirm('Are you REALLY sure?')
		if(agree2)
		{
			f = document.getElementById('delete_form');
			eval('f.' + name + '_id.value = id');
			f.submit();
		}
	}
}
