// ウィンドウのタイトルを変更する
function set_title(title)
{
    document.title = title;
}

function get_url(script)
{
    var loc = new String(document.location);
    var i = loc.lastIndexOf('/');
    return loc.substring(0, i+1) + script;
}

function AjaxFailed(xmlhttp, json)
{
    // 呼び出しが失敗したときの処理
    alert('エラーです:' + xmlhttp.statusText);
}

function AjaxException(xmlhttp, e)
{
    // 例外が発生したときの処理
    alert('例外です:' + e.message);
}

function reporttype_name(reporttype)
{
	if (reporttype == '120') return '有価証券報告書';
	if (reporttype == '130') return '訂正有価証券報告書';
	if (reporttype == '140') return '四半期報告書';
	if (reporttype == '150') return '訂正四半期報告書';
	if (reporttype == '160') return '半期報告書';
	if (reporttype == '170') return '訂正半期報告書';
	if (reporttype == '030') return '有価証券届出書';
	if (reporttype == '040') return '訂正有価証券届出書';
	return "";
}

function reporttype_short_name(reporttype)
{
	if (reporttype == '120') return '有報';
	if (reporttype == '130') return '有報';
	if (reporttype == '140') return '四半期';
	if (reporttype == '150') return '四半期';
	if (reporttype == '160') return '半期';
	if (reporttype == '170') return '半期';
	if (reporttype == '030') return '届出書';
	if (reporttype == '040') return '届出書';
	return "";
}

function reporttype_short_name_list(reporttype)
{
	if (reporttype == '120') return '有報';
	if (reporttype == '130') return '有報<br>(訂正)';
	if (reporttype == '140') return '四半期';
	if (reporttype == '150') return '四半期<br>(訂正)';
	if (reporttype == '160') return '半期';
	if (reporttype == '170') return '半期<br>(訂正)';
	if (reporttype == '030') return '届出書';
	if (reporttype == '040') return '届出書<br>(訂正)';
	return "";
}

function reporttype_name_wai(reporttype)
{
	if (reporttype == 'asr') return '有報 本決算';
	if (reporttype == 'q1r') return '有報 第１四半期';
	if (reporttype == 'q2r') return '有報 第２四半期';
	if (reporttype == 'q3r') return '有報 第３四半期';
	if (reporttype == 'q4r') return '有報 第４四半期';
	if (reporttype == 'q5r') return '有報 第５四半期';
	if (reporttype == 'ssr') return '有報 中間決算';
	if (reporttype == 'srs') return '有価証券届出書';
	if (reporttype == 'sma') return '短信サマリ 本決算';
	if (reporttype == 'sms') return '短信サマリ 中間決算';
	if (reporttype == 'smq') return '短信サマリ 四半期';
	if (reporttype == 'fra') return '短信財務諸表 本決算';
	if (reporttype == 'frs') return '短信財務諸表 中間決算';
	if (reporttype == 'frq') return '短信財務諸表 四半期';
	if (reporttype == 'rvff') return '業績予想';
	if (reporttype == 'rvdf') return '配当予想';
	return "";
}

function consolidate_name(consolidate)
{
	if (consolidate == 'C') return '連結';
	return '単体';
}

function consolidate_short_name(consolidate)
{
	if (consolidate == 'C') return '連';
	return '単';
}

function erase_text(obj)
{
	if (obj.value == obj.defaultValue)
		obj.value = "";
}

function load_pic()
{
    var imgfile = get_url('css/image/loadinfo.gif');
    var img = document.createElement('img');
    img.className = "loadpic";
    img.setAttribute('src', imgfile);
    return img;
}

function this_id()
{
    if (document.location.search == "")
    {
        return -1;
    }
    var params = (document.location.search.substr(1)).split('&');
    for ( var i = 0; i < params.length; i++)
    {
        var n = (params[i].split('='))[0];
        if (n == "id")
        {
            return (params[i].split('='))[1];
        }
    }
    return -1;
}

function wareki_instant(seireki)
{
	if (seireki.match(/(\d{4})-(\d{2})-(\d{2})/) != null)
	{
		var heisei = eval(RegExp.$1) - 1988;
		var month = eval(RegExp.$2);
		var day = eval(RegExp.$3);
		return "平成" + heisei + "年" + month + "月" + day + "日";
	}
	else
	{
		return seireki;
	}
}

function wareki_instant_ym(seireki)
{
	if (seireki.match(/(\d{4})-(\d{2})-(\d{2})/) != null)
	{
		var heisei = eval(RegExp.$1) - 1988;
		var month = eval(RegExp.$2);
		return "平成" + heisei + "年" + month + "月";
	}
	else
	{
		return seireki;
	}
}

function wareki_duration(seireki)
{
	if (seireki.match(/(\d{4}-\d{2}-\d{2})-(\d{4}-\d{2}-\d{2})/) != null)
	{
		var duration_from = RegExp.$1;
		var duration_to = RegExp.$2;
		return wareki_instant(duration_from) + "-" + wareki_instant(duration_to);
	}
	else
	{
		return seireki;
	}
}

function money_comma_separete(money)
{
	var to = String(money);
	var tmp = "";
	while (to != (tmp = to.replace(/^([+-]?\d+)(\d\d\d)/,"$1,$2"))){
		to = tmp;
	}
	return to.replace(/-/, "△");
}

function sector_name(sector)
{
	if (sector == '0050') return  "水産・農林業";
	if (sector == '1050') return  "鉱業";
	if (sector == '2050') return  "建設業";
	if (sector == '3050') return  "食料品";
	if (sector == '3100') return  "繊維製品";
	if (sector == '3150') return  "パルプ・紙";
	if (sector == '3200') return  "化学";
	if (sector == '3250') return  "医薬品";
	if (sector == '3300') return  "石油・石炭製品";
	if (sector == '3350') return  "ゴム製品";
	if (sector == '3400') return  "ガラス・土石製品";
	if (sector == '3450') return  "鉄鋼";
	if (sector == '3500') return  "非鉄金属";
	if (sector == '3550') return  "金属製品";
	if (sector == '3600') return  "機械";
	if (sector == '3650') return  "電気機器";
	if (sector == '3700') return  "輸送用機器";
	if (sector == '3750') return  "精密機器";
	if (sector == '3800') return  "その他製品";
	if (sector == '4050') return  "電気・ガス業";
	if (sector == '5050') return  "陸運業";
	if (sector == '5100') return  "海運業";
	if (sector == '5150') return  "空運業";
	if (sector == '5200') return  "倉庫・運輸関連業";
	if (sector == '5250') return  "情報・通信業";
	if (sector == '6050') return  "卸売業";
	if (sector == '6100') return  "小売業";
	if (sector == '7050') return  "銀行業";
	if (sector == '7100') return  "証券、商品先物取引業";
	if (sector == '7150') return  "保険業";
	if (sector == '7200') return  "その他金融業";
	if (sector == '8050') return  "不動産業";
	if (sector == '9050') return  "サービス業";
	return "";
}

function sector_short_name(sector)
{
	if (sector == '0050') return  "水産・農林業";
	if (sector == '1050') return  "鉱業";
	if (sector == '2050') return  "建設業";
	if (sector == '3050') return  "食料品";
	if (sector == '3100') return  "繊維製品";
	if (sector == '3150') return  "パルプ・紙";
	if (sector == '3200') return  "化学";
	if (sector == '3250') return  "医薬品";
	if (sector == '3300') return  "石油・石炭";
	if (sector == '3350') return  "ゴム製品";
	if (sector == '3400') return  "ガラス・土石";
	if (sector == '3450') return  "鉄鋼";
	if (sector == '3500') return  "非鉄金属";
	if (sector == '3550') return  "金属製品";
	if (sector == '3600') return  "機械";
	if (sector == '3650') return  "電気機器";
	if (sector == '3700') return  "輸送用機器";
	if (sector == '3750') return  "精密機器";
	if (sector == '3800') return  "その他製品";
	if (sector == '4050') return  "電気・ガス業";
	if (sector == '5050') return  "陸運業";
	if (sector == '5100') return  "海運業";
	if (sector == '5150') return  "空運業";
	if (sector == '5200') return  "倉庫・運輸関連";
	if (sector == '5250') return  "情報・通信業";
	if (sector == '6050') return  "卸売業";
	if (sector == '6100') return  "小売業";
	if (sector == '7050') return  "銀行業";
	if (sector == '7100') return  "証券、商品先物";
	if (sector == '7150') return  "保険業";
	if (sector == '7200') return  "その他金融業";
	if (sector == '8050') return  "不動産業";
	if (sector == '9050') return  "サービス業";
	return "";
}

function ed2_sector_name(sector)
{
	if (sector == '0010') return  "農業";
	if (sector == '0020') return  "林業";
	if (sector == '0030') return  "漁業";
	if (sector == '0040') return  "金属鉱業";
	if (sector == '0050') return  "石炭鉱業";
	if (sector == '0060') return  "原油，天然ガス鉱業";
	if (sector == '0070') return  "非金属鉱業";
	if (sector == '0080') return  "建設業";
	if (sector == '0090') return  "食料品製造業";
	if (sector == '0100') return  "繊維工業";
	if (sector == '0110') return  "木材，木製品製造業";
	if (sector == '0120') return  "パルプ，紙，紙加工品製造業";
	if (sector == '0130') return  "出版，印刷，同関連産業";
	if (sector == '0140') return  "化学工業";
	if (sector == '0150') return  "石油製品，石炭製品製造業";
	if (sector == '0160') return  "ゴム製品製造業";
	if (sector == '0170') return  "皮革，同製品製造業";
	if (sector == '0180') return  "窯業，土石製品製造業";
	if (sector == '0190') return  "鉄鋼業";
	if (sector == '0200') return  "非鉄金属製造業";
	if (sector == '0210') return  "金属製品製造業";
	if (sector == '0220') return  "一般機械器具製造業";
	if (sector == '0230') return  "電気機械器具製造業";
	if (sector == '0240') return  "輸送用機械器具製造業";
	if (sector == '0250') return  "精密機械器具製造業";
	if (sector == '0260') return  "その他の製造業";
	if (sector == '0270') return  "卸売業";
	if (sector == '0280') return  "小売業";
	if (sector == '0290') return  "銀行，信託業";
	if (sector == '0300') return  "証券業";
	if (sector == '0310') return  "保険業";
	if (sector == '0320') return  "不動産業";
	if (sector == '0330') return  "民営鉄道業";
	if (sector == '0340') return  "道路運送業";
	if (sector == '0350') return  "水運業";
	if (sector == '0360') return  "航空運輸業";
	if (sector == '0370') return  "倉庫業";
	if (sector == '0380') return  "運輸に付帯するサービス業";
	if (sector == '0390') return  "通信業";
	if (sector == '0400') return  "電気業";
	if (sector == '0410') return  "ガス業";
	if (sector == '0420') return  "旅館業";
	if (sector == '0430') return  "映画業";
	if (sector == '0430') return  "映画業";
	if (sector == '0440') return  "娯楽業";
	if (sector == '0450') return  "その他サービス業";
	if (sector == '0460') return  "社会医療法人債（内国）";
	if (sector == '0470') return  "学校法人債（内国）";
	if (sector == '2010') return  "外国法人・組合";
	if (sector == '2020') return  "社会医療法人債（外国）";
	if (sector == '2030') return  "学校法人債（外国）";
	if (sector == '3010') return  "外国政府等";
	if (sector == '4010') return  "個人（組合発行者を除く）";
	if (sector == '5010') return  "個人（非居住者）（組合発行者を除く）";
	if (sector == '6010') return  "内国法人・組合（有価証券報告書等の提出義務者以外）";
	if (sector == '7010') return  "外国法人・組合（有価証券報告書等の提出義務者以外）";
}

function ed2_sector_short_name(sector)
{
	if (sector == '0010') return  "農業";
	if (sector == '0020') return  "林業";
	if (sector == '0030') return  "漁業";
	if (sector == '0040') return  "金属鉱業";
	if (sector == '0050') return  "石炭鉱業";
	if (sector == '0060') return  "原油，天然ガス";
	if (sector == '0070') return  "非金属鉱業";
	if (sector == '0080') return  "建設業";
	if (sector == '0090') return  "食料品";
	if (sector == '0100') return  "繊維工業";
	if (sector == '0110') return  "木材，木製品";
	if (sector == '0120') return  "パルプ，紙加工";
	if (sector == '0130') return  "出版，印刷関連";
	if (sector == '0140') return  "化学工業";
	if (sector == '0150') return  "石油，石炭製品";
	if (sector == '0160') return  "ゴム製品";
	if (sector == '0170') return  "皮革，同製品";
	if (sector == '0180') return  "窯業，土石製品";
	if (sector == '0190') return  "鉄鋼業";
	if (sector == '0200') return  "非鉄金属";
	if (sector == '0210') return  "金属製品";
	if (sector == '0220') return  "一般機械器具";
	if (sector == '0230') return  "電気機械器具";
	if (sector == '0240') return  "輸送用機械器具";
	if (sector == '0250') return  "精密機械器具";
	if (sector == '0260') return  "その他の製造業";
	if (sector == '0270') return  "卸売業";
	if (sector == '0280') return  "小売業";
	if (sector == '0290') return  "銀行，信託業";
	if (sector == '0300') return  "証券業";
	if (sector == '0310') return  "保険業";
	if (sector == '0320') return  "不動産業";
	if (sector == '0330') return  "民営鉄道業";
	if (sector == '0340') return  "道路運送業";
	if (sector == '0350') return  "水運業";
	if (sector == '0360') return  "航空運輸業";
	if (sector == '0370') return  "倉庫業";
	if (sector == '0380') return  "運輸付帯業";
	if (sector == '0390') return  "通信業";
	if (sector == '0400') return  "電気業";
	if (sector == '0410') return  "ガス業";
	if (sector == '0420') return  "旅館業";
	if (sector == '0430') return  "映画業";
	if (sector == '0430') return  "映画業";
	if (sector == '0440') return  "娯楽業";
	if (sector == '0450') return  "その他サービス";
	if (sector == '0460') return  "社会医療法人債（内国）";
	if (sector == '0470') return  "学校法人債（内国）";
	if (sector == '2010') return  "外国法人・組合";
	if (sector == '2020') return  "社会医療法人債（外国）";
	if (sector == '2030') return  "学校法人債（外国）";
	if (sector == '3010') return  "外国政府等";
	if (sector == '4010') return  "個人（組合発行者を除く）";
	if (sector == '5010') return  "個人（非居住者）（組合発行者を除く）";
	if (sector == '6010') return  "内国法人・組合（有価証券報告書等の提出義務者以外）";
	if (sector == '7010') return  "外国法人・組合（有価証券報告書等の提出義務者以外）";
}

function ed3_sector_name(sector)
{
	if (sector == '0010') return  "農業";
	if (sector == '0020') return  "林業";
	if (sector == '0030') return  "漁業";
	if (sector == '0040') return  "金属鉱業";
	if (sector == '0050') return  "石炭鉱業";
	if (sector == '0060') return  "原油，天然ガス鉱業";
	if (sector == '0070') return  "非金属鉱業";
	if (sector == '0080') return  "建設業";
	if (sector == '0090') return  "肉製品乳製品製造業";
	if (sector == '0100') return  "製粉業";
	if (sector == '0110') return  "製糖業";
	if (sector == '0120') return  "パン菓子製造業";
	if (sector == '0130') return  "飲料製造業";
	if (sector == '0140') return  "食用油製造業";
	if (sector == '0150') return  "その他食料品製造業";
	if (sector == '0160') return  "絹紡織業";
	if (sector == '0170') return  "綿紡織業";
	if (sector == '0180') return  "毛紡織業";
	if (sector == '0190') return  "麻紡織業";
	if (sector == '0200') return  "その他繊維工業";
	if (sector == '0210') return  "木材，木製品製造業";
	if (sector == '0220') return  "パルプ製造業";
	if (sector == '0230') return  "紙，紙加工品製造業";
	if (sector == '0240') return  "出版，印刷，同関連産業";
	if (sector == '0250') return  "無機工業薬品製造業";
	if (sector == '0260') return  "有機工業薬品製造業";
	if (sector == '0270') return  "化学繊維製造業";
	if (sector == '0280') return  "油脂，石鹸製造業";
	if (sector == '0290') return  "塗料，インキ製造業";
	if (sector == '0300') return  "医薬品製造業";
	if (sector == '0310') return  "その他化学工業";
	if (sector == '0320') return  "石油製品，石炭製品製造業";
	if (sector == '0330') return  "ゴム製品製造業";
	if (sector == '0340') return  "皮革，同製品製造業";
	if (sector == '0350') return  "窯業，土石製品製造業";
	if (sector == '0360') return  "製鉄，製鋼圧延業";
	if (sector == '0370') return  "その他鉄鋼，二次製品製造業";
	if (sector == '0380') return  "非鉄金属製錬，圧延，伸線，合金製造業";
	if (sector == '0390') return  "電線ケーブル製造業";
	if (sector == '0400') return  "金属製品製造業";
	if (sector == '0410') return  "原動機製造業";
	if (sector == '0420') return  "金属加工機械製造業";
	if (sector == '0430') return  "繊維機械製造業";
	if (sector == '0440') return  "その他機械製造業";
	if (sector == '0450') return  "電動機発電機製造業";
	if (sector == '0460') return  "通信機械器具製造業";
	if (sector == '0470') return  "その他電気機械器具製造業";
	if (sector == '0480') return  "船舶製造業";
	if (sector == '0490') return  "鉄道車輌製造業";
	if (sector == '0500') return  "自動車製造業";
	if (sector == '0510') return  "航空機製造業";
	if (sector == '0520') return  "自転車その他輸用送機器製造業";
	if (sector == '0530') return  "計量器，測定器，測量機械，医療機械，理科学機械，光学機械，時計製造業";
	if (sector == '0540') return  "その他の製造業";
	if (sector == '0550') return  "卸売業";
	if (sector == '0560') return  "小売業";
	if (sector == '0570') return  "銀行";
	if (sector == '0580') return  "信託銀行";
	if (sector == '0590') return  "旧相互銀行";
	if (sector == '0600') return  "その他の金融業";
	if (sector == '0610') return  "証券業";
	if (sector == '0620') return  "保険業";
	if (sector == '0630') return  "不動産業";
	if (sector == '0640') return  "民営鉄道業";
	if (sector == '0650') return  "道路運送業";
	if (sector == '0660') return  "水運業";
	if (sector == '0670') return  "航空運輸業";
	if (sector == '0680') return  "倉庫業";
	if (sector == '0690') return  "運輸に付帯するサービス業";
	if (sector == '0700') return  "通信業";
	if (sector == '0710') return  "電気業";
	if (sector == '0720') return  "ガス業";
	if (sector == '0730') return  "旅館業";
	if (sector == '0740') return  "映画製作配給業";
	if (sector == '0750') return  "映画館";
	if (sector == '0760') return  "娯楽業";
	if (sector == '0770') return  "その他サービス業";
	if (sector == '0780') return  "内国社会医療法人債";
	if (sector == '0790') return  "内国学校法人債";
	if (sector == '2010') return  "外国法人・組合";
	if (sector == '2020') return  "外国社会医療法人債";
	if (sector == '2030') return  "外国学校法人債";
	if (sector == '3010') return  "外国政府等";
	if (sector == '4010') return  "個人（組合発行者を除く）";
	if (sector == '5010') return  "個人（非居住者）（組合発行者を除く）";
	if (sector == '6010') return  "内国法人・組合（有価証券報告書等の提出義務者以外）";
	if (sector == '7010') return  "外国法人・組合（有価証券報告書等の提出義務者以外）";
}

function ed3_sector_short_name(sector)
{
	if (sector == '0010') return  "農業";
	if (sector == '0020') return  "林業";
	if (sector == '0030') return  "漁業";
	if (sector == '0040') return  "金属鉱業";
	if (sector == '0050') return  "石炭鉱業";
	if (sector == '0060') return  "原油，天然ガス鉱業";
	if (sector == '0070') return  "非金属鉱業";
	if (sector == '0080') return  "建設業";
	if (sector == '0090') return  "肉,乳製品";
	if (sector == '0100') return  "製粉業";
	if (sector == '0110') return  "製糖業";
	if (sector == '0120') return  "パン菓子製造業";
	if (sector == '0130') return  "飲料製造業";
	if (sector == '0140') return  "食用油製造業";
	if (sector == '0150') return  "その他食料品";
	if (sector == '0160') return  "絹紡織業";
	if (sector == '0170') return  "綿紡織業";
	if (sector == '0180') return  "毛紡織業";
	if (sector == '0190') return  "麻紡織業";
	if (sector == '0200') return  "その他繊維工業";
	if (sector == '0210') return  "木材，木製品";
	if (sector == '0220') return  "パルプ製造業";
	if (sector == '0230') return  "紙，紙加工品";
	if (sector == '0240') return  "出版，印刷関連";
	if (sector == '0250') return  "無機工業薬品";
	if (sector == '0260') return  "有機工業薬品";
	if (sector == '0270') return  "化学繊維製造業";
	if (sector == '0280') return  "油脂，石鹸";
	if (sector == '0290') return  "塗料，インキ";
	if (sector == '0300') return  "医薬品製造業";
	if (sector == '0310') return  "その他化学工業";
	if (sector == '0320') return  "石油，石炭製品";
	if (sector == '0330') return  "ゴム製品製造業";
	if (sector == '0340') return  "皮革，同製品";
	if (sector == '0350') return  "窯業，土石製品";
	if (sector == '0360') return  "製鉄，製鋼";
	if (sector == '0370') return  "その他鉄鋼製品";
	if (sector == '0380') return  "非鉄金属，合金";
	if (sector == '0390') return  "電線ケーブル";
	if (sector == '0400') return  "金属製品製造業";
	if (sector == '0410') return  "原動機製造業";
	if (sector == '0420') return  "金属加工機械";
	if (sector == '0430') return  "繊維機械製造業";
	if (sector == '0440') return  "その他機械製造";
	if (sector == '0450') return  "電動機発電機";
	if (sector == '0460') return  "通信機械器具";
	if (sector == '0470') return  "その他電気器具";
	if (sector == '0480') return  "船舶製造業";
	if (sector == '0490') return  "鉄道車輌製造業";
	if (sector == '0500') return  "自動車製造業";
	if (sector == '0510') return  "航空機製造業";
	if (sector == '0520') return  "その他輸用送機";
	if (sector == '0530') return  "理科学機，時計";
	if (sector == '0540') return  "その他の製造業";
	if (sector == '0550') return  "卸売業";
	if (sector == '0560') return  "小売業";
	if (sector == '0570') return  "銀行";
	if (sector == '0580') return  "信託銀行";
	if (sector == '0590') return  "旧相互銀行";
	if (sector == '0600') return  "その他の金融業";
	if (sector == '0610') return  "証券業";
	if (sector == '0620') return  "保険業";
	if (sector == '0630') return  "不動産業";
	if (sector == '0640') return  "民営鉄道業";
	if (sector == '0650') return  "道路運送業";
	if (sector == '0660') return  "水運業";
	if (sector == '0670') return  "航空運輸業";
	if (sector == '0680') return  "倉庫業";
	if (sector == '0690') return  "運輸付帯サービス";
	if (sector == '0700') return  "通信業";
	if (sector == '0710') return  "電気業";
	if (sector == '0720') return  "ガス業";
	if (sector == '0730') return  "旅館業";
	if (sector == '0740') return  "映画製作配給業";
	if (sector == '0750') return  "映画館";
	if (sector == '0760') return  "娯楽業";
	if (sector == '0770') return  "その他サービス業";
	if (sector == '0780') return  "内国社会医療法人債";
	if (sector == '0790') return  "内国学校法人債";
	if (sector == '2010') return  "外国法人・組合";
	if (sector == '2020') return  "外国社会医療法人債";
	if (sector == '2030') return  "外国学校法人債";
	if (sector == '3010') return  "外国政府等";
	if (sector == '4010') return  "個人（組合発行者を除く）";
	if (sector == '5010') return  "個人（非居住者）（組合発行者を除く）";
	if (sector == '6010') return  "内国法人・組合（有価証券報告書等の提出義務者以外）";
	if (sector == '7010') return  "外国法人・組合（有価証券報告書等の提出義務者以外）";
}

//////////////////////////////////////////////////////////////
// 広告（ヘッダ・メニューの下の共通広告）のパラメータを設定する
//////////////////////////////////////////////////////////////
// 728x90, 作成済み 08/04/24
function set_google_ad_params_common()
{
	google_ad_client = "pub-4898449747359627";
	google_ad_slot = "5639571765";
	google_ad_width = 728;
	google_ad_height = 90;
}

// 160x600, 作成済み 08/05/01
function set_google_ad_params_160x600()
{
	google_ad_client = "pub-4898449747359627";
	google_ad_slot = "1183207266";
	google_ad_width = 160;
	google_ad_height = 600;
}

// 200x200, 作成済み 08/04/25
function set_google_ad_params_200x200()
{
	google_ad_client = "pub-4898449747359627";
	google_ad_slot = "6695645091";
	google_ad_width = 200;
	google_ad_height = 200;
}
 