function set(elm,val)
{
	my = document.getElementById(elm);
	if(my.value==val)
	{
		document.getElementById('sd').value = document.getElementById('sd').value ^ 1;
	}
	else
	{
		my.value = val;
		document.getElementById('sd').value = 0;
	}
}
function go()
{
	document.forms[0].submit();
	return true;
}

function popup(id)
{
	window.open('?t=info&id='+id, 'popup', 'width=550,height=400,scrollbars=yes');
	return false;
}
