//インクルードサンプル（表示テキスト内に改行は使えないので注意！）

var pdfContext = "Can recombinant thrombomodulin play a preventive role for veno-occlusive disease after haematopoietic stem cell transplantation? Thromb Haemost. 2011 105:1118-1120.";
var pdfFile = "pdf/thesis_dissertation/58.pdf";

document.open();
document.write("<div class=\"study_report_report\">");
document.write("<a href=\"" + pdfFile + "\" target=\"_blank\"><img src=\"images/sidemenu_study_report_report.jpg\" /></a>");
document.write("</div>");
document.write("<p class=\"study_report_text\">");
document.write("<a href=\"" + pdfFile + "\" target=\"_blank\">" + pdfContext + "</a>");
document.write("</p>");
document.close();

