
function dispSubWin(taObj)
{
   
	source = taObj.value;
    txt = '<html><head><title>プレビュー</title></head>';
    txt = txt+'<body style="font-size:12px;line-height:150%;color:#666666;">';
    txt = txt+'<div style="width:160px;">';
    txt = txt+source;
    txt = txt+'</div>';
    txt = txt+'<p>※↑に何も表示されていないときは、<br>生年月日が半角入力されているか確認してください。</p>';
    txt = txt+'<p>※幅やフォント種類は、設置場所に応じて変わります。</p>';
    txt = txt+'</body></html>';
	var sbWin = window.open("","preview","width=420,height=420,toolbar=no");
    sbWin.focus();
	sbWin.document.write(txt);
	sbWin.document.close();
};