//////////////////////////////////////////////////////////////////
//
//================================================================
// KOKUYO --- JavaScript
//            Copyright 2004 CATWALK,Inc. All rights reserved.
//            http://www.web-kyoto.com
//================================================================
//
// コピーライト記述用JavaScript
// Created by CATWALK（三原比呂美）
// 2004年08月15日 日本語版作成
//
// 2008年01月25日 英語版として新規作成
//
//////////////////////////////////////////////////////////////////

function copy(company) {

    // 引数がなかった場合。
    if ( ! company ) {
       company = "kokuyo";
    }

    var sources = {
        "kokuyo": {
            "copyright" : "KOKUYO"
		}
    }

    if (! sources[company]) {
    return;
    }

    document.writeln('<div id="footer" style="width:720px;margin:0;">');

    document.writeln('<p>Copyright 2009 '+ sources[company]["copyright"] +' Co.,Ltd. All rights reserved.</p>');

    document.writeln('</div>');

}



















