<!--
/******************************************************
 *	@name			basement.js
 *	@type			get
 *	@facility		”Ä—p“IJavascript
 *	@created date	2007/02/27 (revised 2008/02/27)
 *	@author			so
 *	@version		1.0
 *	@copyright (c) 2007 COCONOE INC.
 ******************************************************/

window.onload = function()
{
	if (!document.getElementsByTagName) return false;

	var ernal = document.getElementsByTagName('a');
	
	for (var i = 0; i < ernal.length; i++)
	{
		if (ernal[i].className == 'ext')
		{
			ernal[i].onclick = function()
			{
				window.open(this.href);
				return false;
			}
		}
	}
}

//FOROLDBROWSERS-->
