/* -----------------------------------------------------------------------------
  top.js
  author R.MIZOGUCHI(mizoguchi@javable.jp)
  history
  2004/02/28 1.0.0 Create
----------------------------------------------------------------------------- */
if (self != top) top.location.href = self.location.href;
if (!document.all) {
	document.write('<a name="top"></a>');
}

function Book(sku, isbn, title) {
	this.title = title;
	this.sku = sku;
	this.isbn = isbn;
}


