// common.js
// (C)2004 Innovation of Medical Service, Inc.
//
var	url_root		= 'http://192.168.1.101/ims-web/';

var dir_img			= url_root + 'share/images/';
var	dir_company	= url_root + 'company/';
var	dir_contact	= url_root + 'contact/';
var	dir_sitemap	= url_root + 'sitemap/';

var copy	= 'All Rights Reserved. Copyright&copy;2003 Innovation of Medical Service,Inc.';

//ページのフッター
function jsPutPageFooter() {
	var	kugiri= '&nbsp;&nbsp;|&nbsp;&nbsp;';	//区切り文字
	var	backcolor = "#CCCCCC"	//背景色

	var link  = kugiri
						+ '<img src="' + dir_img + 'ico_home.gif">'
						+ '<a target="_top" href="' + url_root + '" class="footer" title="IMS Webサイトのトップページへ戻ります">ホーム</a>'
						+ kugiri
						+ '<img src="' + dir_img + 'ico_doc.gif">'
						+ '<a target="fraTopBody" href="' + dir_company + '" class="footer" title="会社案内">会社案内</a>'
						+ kugiri
						+ '<img src="' + dir_img + 'ico_doc.gif">'
						+ '<a target="fraTopBody" href="' + dir_contact + '" class="footer" title="お問い合わせ">お問い合わせ</a>'
						+ kugiri
						+ '<img src="' + dir_img + 'ico_doc.gif">'
						+ '<a target="fraTopBody" href="' + dir_sitemap + '" class="footer" title="サイトマップ">サイトマップ</a>'
						+ kugiri;

	document.write('<div style="margin:3 0;padding:0">');
	document.write(' <table width="99%" border="0" cellspacing="0" cellpadding="1" class="footer">');
	document.write(' <tbody>');
	document.write(' <tr align="center" bgcolor="' + backcolor + '">');
	document.write('  <td valign="bottom" height="17" background="' + dir_img + 'footerbar1.gif' + '">');
	document.write(    link );
	document.write('  </td>');
	document.write(' </tr>');
	document.write(' <tr align="center" bgcolor="' + backcolor + '">');
	document.write('  <td colspan="2" title="' + copy + '">');
	document.write('   <span class="footercopy">' + copy + '</span>');
	document.write('  </td>');
	document.write(' </tr>');
	document.write(' </tbody>');
	document.write(' </table>');
	document.write('</div>');
}

