function Jump(linker){
	n = linker.selectedIndex;
	location.href = linker.options[n].value;
}

function TigilError() {
	return true;
}
window.onerror = TigilError;

function radioChange(tName1,tName2) {
	if(document.forms[tName1].selected_answer[tName2].checked == true){
		document.forms[tName1].add_answer.disabled = false;
		document.forms[tName1].add_answer.style.backgroundColor = '#ffffff';
	}else{
		document.forms[tName1].add_answer.disabled = true;
		document.forms[tName1].add_answer.style.backgroundColor = '#e6e6e6';
	}
}

