/* ボッシュ・イン・ジャパン */

Event.observe( window, "load", function() {
	var theLinks = $$( "a.interpack2008DetailsLink" );
	theLinks.each( function( aLink ) {
		var pageUrl = aLink.href;
		Event.observe( aLink, "click", function( e ) {
			var subWindowHeight = screen.height - 200;
			openSubWindow( pageUrl, "interpack2008DetailsSubwindow", "width=700,height=" + subWindowHeight + ",menubar=no,location=no,resizable=yes,scrollbars=no,status=yes" );
			window.event ? event.returnValue = false : e.preventDefault();  // IE : standards
		} );
	} );
} );

