<!--
//=============================================================================
//	backtolocation( url_, color_, class_ )
//-----------------------------------------------------------------------------
//	<< Overview >>
//		ひとつ前に戻る
//=============================================================================
function backtolocation(locationpath_,class_){
	document.write("■&nbsp;<a href=\""+ locationpath_ +"bbs/index.html\" class=\""+ class_ +"\">改善要望・意見<\/a>");
	document.write("&nbsp;&nbsp;");
	document.write("■&nbsp;<a href=\""+ locationpath_ +"main.cgi\" class=\""+ class_ +"\">もう見ねぇよヽ(｀Д´)ノ<\/a>\n");
}
//=============================================================================
//-----------------------------------------------------------------------------
//	<< Overview >>
//=============================================================================
function getbacktolocationbbs(locationpath_,class_,target_){
	if ( target_ == "" ){
		document.write("■&nbsp;<a href=\""+ locationpath_ +"bbs/index.html\" class=\""+ class_ +"\">改善要望・意見<\/a>");
	}else{
		document.write("■&nbsp;<a href=\""+ locationpath_ +"bbs/index.html\" class=\""+ class_ +"\" target=\""+ target_ +"\">改善要望・意見<\/a>");
	}
}
//=============================================================================
//-----------------------------------------------------------------------------
//	<< Overview >>
//=============================================================================
function getbacktolocationtopmenu(locationpath_,class_,target_){
	if ( target_ == "" ){
		document.write("■&nbsp;<a href=\""+ locationpath_ +"main.cgi\" class=\""+ class_ +"\">もう見ねぇよヽ(｀Д´)ノ<\/a>\n");
	}else{
		document.write("■&nbsp;<a href=\""+ locationpath_ +"main.cgi\" class=\""+ class_ +"\" target=\""+ target_ +"\">もう見ねぇよヽ(｀Д´)ノ<\/a>\n");
	}
}
//-->
