function confirmAction(extra_msg)
{
	var msg = "Are you sure you want to " + extra_msg;
	
	if(confirm(msg + "?"))
		return true;
	else
		return false;
}

function changeBox(cbox) 
{
	box = eval(cbox);
	box.checked = !box.checked;
}