var column1_profile = "畑山護之 Moriyuki Hatayama<br />本誌編集長。オモチャの知識は広く浅いが、仕事柄、ウンチクだけはご立派。懐かしヒーローや、スロットカーにハマリ中。";
var column5_profile = "佐藤義徳 Yoshinori Sato<br />編集長のいかんともし難いギャグも、身を挺して受け止める“ドカベン”。三度の飯と、ロボットや超合金が大好き。";
var column6_profile = "宮澤祐介 Yusuke Miyazawa<br />編集部最年少。最近クルマを購入したため、クルマ系や女の子ウケするファンシー系オモチャに興味津々。でも彼女は募集中。";
var column7_profile = "石黒智樹 Tomoki Ishiguro<br />突如出現した謎の助っ人ガイジン。タイアップ担当。クルマ、怪獣、ロボット、SF、刑事モノなどなど、男子玩具はだいたいWelcome。愛犬家。";

var photo_file_extention = ".gif";
var photo_file_width = "170";
var photo_file_height = "115";
var photo_file_dir = "http://www.hobidas.com/blog/quanto/staff/blog/images/photo/";

function echo_profile_html(category_name, category_link_path) {
    document.write(get_profile_html(category_name, category_link_path));
}

function get_profile_html(category_name, category_link_path) {

    var returnValue = "<div class=\"pphoto\">\n";
    returnValue += "<a href=\"" + category_link_path + "\">" + get_photo_html(category_name) + "</a>\n";
    returnValue += "</div>\n";
    returnValue += "<div id=\"pdata\" class=\"m2\">\n";
    returnValue += eval(category_name + "_profile\n");
    returnValue += "</div>\n";
    return returnValue;
}

function get_photo_html(category_name) {
    return "<img src=\"" + photo_file_dir + "p_" + category_name + photo_file_extention + "\" width=\"" + photo_file_width + "\" height=\"" + photo_file_height + "\" alt=\"\" />";
}
