<!--
	var	normal_color = '#FFFFFF';
	var	overed_color = '#FFCCCC';
	var	the_window;

	//-------------------------------------------
	// OnMouseOverイベントハンドラ
	function menuOnMouseOver( id )
	{
		setLinkCursor( id );
		getElementStyle( id ).background = overed_color;
	}

	//-------------------------------------------
	// OnMouseOutイベントハンドラ
	function menuOnMouseOut( id )
	{
		getElementStyle( id ).background = normal_color;
	}

	//-------------------------------------------
	// CheckBoxのOnClickイベントハンドラ
	function checkboxOnClick( sender, id )
	{
		if( sender.checked )
		{
			getElementStyle( id ).background = "#E6F8E4";
		}
		else
		{
			getElementStyle( id ).background = "#FFFFFF";
		}
	}

	//-------------------------------------------
	// ショッピングカートウインドウを画面中央に表示
	function openCartWindow( link )
	{
		if( parseInt( navigator.appVersion ) > 3 )
		{
			var width         = 800;
			var height        = 500;
			var	screen_height = window.screen.availHeight;
			var	screen_width  = window.screen.availWidth;
			var	left_point    = parseInt( screen_width  / 2 ) - parseInt( width  / 2 );
			var	top_point     = parseInt( screen_height / 2 ) - parseInt( height / 2 ) - 50;

			if( the_window == null || the_window.closed )
			{
				if( link == null )
				{
					link = "about:blank";
				}

				the_window = window.open
							 (
								link,
								"0469_cart_window",
								"height=" + height + ",width=" + width + ",left=" + left_point + ",top=" + top_point + ",toolbar=yes,status=yes,menubar=no,scrollbars,resizable=yes,location=0,directories=0"
							 );
			}

			the_window.focus();

			return true;
		}
		else
		{
			return false;
		}
	}

	// Netscape4のバグ対策
	function setReloadPage( init )
	{
		if( init == true )
		{
			with( navigator )
			{
				if( ( appName == "Netscape" ) && ( parseInt( appVersion ) == 4 ) )
				{
					document.pageW = innerWidth;
					document.pageH = innerHeight;
					onresize       = setReloadPage;
				}
			}
		}
		else if( innerWidth != document.pageW || innerHeight != document.pageH )
		{
			location.reload();
		}
	}
//-->
