/*
 * 解説ページ用にrccscriptを上書き
 *
 */

RccScript.goNext = function() {
    var answer = document.getElementById('rcc_input').value;
    if (answer == '') return;
    answer = RccScript.shapeAnswer(answer);
    if (answer == '') return;
    var result = document.getElementById('result');
    if (result)
	result.innerHTML = 'xx_' + answer + '.html';
};
