function change_check(pic, id){
	var x = document.getElementById(id);
	var y = pic;

	if (x.value == '1')
	{
		x.value = '0';
		y.src = 'images/uncheck.gif';
	}
	else
	{
		x.value = '1';
		y.src = 'images/check.gif';
	}
}

function change_radio(id, value, nValue, values){
	// alert(id);
	var input = document.getElementById('_'+id+'_');
	// alert(input.value);
	for(i=1; i<=values; i++)
    {
		document.getElementById('_'+id+'_'+i).className = 'radio';
    }
	document.getElementById('_'+id+'_'+nValue).className = 'radio_check';
	input.value = value;
	// alert(id +' - ' + input.value);
}
function change_checkbox(ths, id){
	// alert(id);
	var input = document.getElementById('_'+id);
	// alert('_'+id);
	// alert(input.value);
	if (input.value == '0')
	{
		ths.className = 'checkbox_check';
		input.value='1';
	}
	else
	{
		ths.className = 'checkbox';
		input.value='0';
	}
	// alert(input.value);
/*
	// alert(id);
	var input = document.getElementById('_'+id+'_');
	// alert(input.value);
	for(i=1; i<=values; i++)
		document.getElementById('_'+id+'_'+i).className = 'radio';
	document.getElementById('_'+id+'_'+value).className = 'radio_check';
	input.value = value;
	// alert(id +' - ' + input.value);
*/
}