// JavaScript Document

function ChangeBook()
			{
				var author= document.refBook1.author.value;
				var authorBook = document.getElementById("authorBook");
				
				authorBook.firstChild.nodeValue=author;
				
				var title = document.refBook1.title.value;
				var titleBook = document.getElementById("titleBook");
				
				titleBook.firstChild.nodeValue=title;
				
				var pub = document.refBook1.pub.value;
				var pubBook = document.getElementById("pubBook");
				
				pubBook.firstChild.nodeValue=pub;
				
				var pub2 = document.refBook1.pub2.value;
				var pub2Book = document.getElementById("pub2Book");
				
				pub2Book.firstChild.nodeValue=pub2;
				
				var pub3 = document.refBook1.pub3.value;
				var pub3Book = document.getElementById("pub3Book");
				
				pub3Book.firstChild.nodeValue=pub3;
				
				var pages = document.refBook1.pages.value;
				var pagesBook = document.getElementById("pagesBook");
				
				pagesBook.firstChild.nodeValue=pages;
				
				var edition = document.refBook1.edition.value;
				var editionBook = document.getElementById("editionBook");
				
				editionBook.firstChild.nodeValue=edition;
			}