var column1_profile = "おつかれ合金　Otsukare GO-KIN<br />スーパーおもちゃライター。クアント本誌から増刊号など、媒体を問わずモーレツに執筆中。超合金やソフビなど幅広い好奇心が生んだ無差別コレクションが押入れに眠る……。webクアント特派員第00号。";
var column2_profile = "みぞれ　Mizole<br />ホラーなイラストレーター。クアント本誌では展開できないホラー系血みどろネタに強い刺客として白羽の矢が立つ。本業は絵コンテマンだが、マントをつけたヒーローではない。webクアント特派員第00号。";

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/column/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=\"\" />";
}
