function returnURLs(){
	if(location.pathname.substr(location.length - 1,1) == "/"){
		if(String(location).substr(-3,1) == "/"){
			return location.pathname;
		}
		return location.pathname.substring(String(location.pathname).lastIndexOf("/") + 1,String(location.pathname).length);			//b_hp/0604_renewal/
	}else if(location.pathname.indexOf("?")){
		if(String(location.pathname).substr(-1) == "/"){
			return location.pathname;
		}else{
			return location.pathname.substring(location.pathname.lastIndexOf("/") + 1,location.pathname.lastIndexOf("?") - 1);			//b_hp/0604_renewal/?l || b_hp/0604_renewal/index.html?l
		}
	}else{
		return location.pathname.substring(location.pathname.lastIndexOf("/") + 1,location.pathname.length);			//b_hp/0604_renewal/index.html
	}
}
var ht = "";
var ha = "";
var bknmb = "";
if(!document.layers && window.location && document.getElementById){
	if(String(window.location).indexOf("/backnumber/") != -1){
//		document.write('<link rel="stylesheet" type="text/css" media="all" href="/b_hp/stylesheets/backnumber.css" />');
		bknmb = "../"
	}
	
	if(String(location).indexOf("?l") > -1){
		ht += '<a href="'+ returnURLs() + '' +'"><img src="/b_hp/img/f_s_d.gif" width="16" height="16"></a>';
		ht += '<a href="'+ returnURLs() + '?m' +'"><img src="/b_hp/img/f_m_d.gif" width="16" height="16"></a>';
		ht += '<img src="/b_hp/img/f_l_e.gif" width="16" height="16"><br />';
		document.write('<link rel="stylesheet" type="text/css" media="all" href="/b_hp/stylesheets/def_index_l.css" />');
		ha = "?l";
	}else if(String(location).indexOf("?m") > -1){
		ht += '<a href="'+ returnURLs() + '' +'"><img src="/b_hp/img/f_s_d.gif" width="16" height="16"></a>';
		ht += '<img src="/b_hp/img/f_m_e.gif" width="16" height="16">';
		ht += '<a href="'+ returnURLs() + '?l' +'"><img src="/b_hp/img/f_l_d.gif" width="16" height="16"></a><br />';
		document.write('<link rel="stylesheet" type="text/css" media="all" href="/b_hp/stylesheets/def_index_m.css" />');
		ha = "?m"
	}else{
		ht += '<img src="/b_hp/img/f_s_e.gif" width="16" height="16">';
		ht += '<a href="'+ returnURLs() + '?m' +'"><img src="/b_hp/img/f_m_d.gif" width="16" height="16"></a>';
		ht += '<a href="'+ returnURLs() + '?l' +'"><img src="/b_hp/img/f_l_d.gif" width="16" height="16"></a><br />';
		document.write('<link rel="stylesheet" type="text/css" media="all" href="/b_hp/stylesheets/def_index_s.css" />');
		ha = "?s";
	}
	if(String(window.location).indexOf("/backnumber/") != -1){
		document.write('<link rel="stylesheet" type="text/css" media="all" href="/b_hp/stylesheets/backnumber.css" />');
//		bknmb = "../"
	}
}

