
// -------------------------------------------------------------------------
// --- 結果を判別するスクリプト ---
// -------------------------------------------------------------------------


// hidden に格納されたデータの最適化
function formFloor( num )
{
	top.script.document.type.isMBTI.value = top.script.document.type.isMBTI.value.substring(0, num) ;
}


// 項目チェック
function dataCatch( data )
{

	top.script.document.type.isMBTI.value += data ;

	if ( top.script.document.type.isMBTI.value.length == 4 )
	{
		top.script.document.type.submit();  ;
	}
	
}

