// Sets a style for the Author div. Optional. document.write (""); function writeProduct (productcode, producttitle, productauthor){ var productcode; var producttitle; var productauthor; document.write("" + producttitle + ""); //Checks to see if an author is listed, if yes, the div is written if (productauthor==""){ document.write(""); }else{ document.write("
"); } } // Entry on Page should look like so: // // where product code number, product name and book author are all alphanumeric strings passed to the script //If there is no author, simple leave that space like so ''...