/*
 * common.js
 *
 * 共通javascriptファイル
 *
 */

//---------------------------------------------------------------------------
// HTMLオブジェクト取得
//---------------------------------------------------------------------------
function getObj( id )
{
	return document.all && document.all(id) || document.getElementById && document.getElementById(id);
}
