
function dispSubWin(taObj)
{
   
	source = taObj.value;
    txt = '<html><head><title>プレビュー</title>';
    txt = txt+'<link rel="stylesheet" href="./tools/style_tools.css" type="text/css"></head>';
    txt = txt+'<body>';
    txt = txt+'<div>';
    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,scrollbars=yes,resizable=yes");
    sbWin.focus();
	sbWin.document.write(txt);
	sbWin.document.close();
};
