Steven1976a,
Be sure to check out the user forums where you got your cart. They'll have coding tips and advice on which fields to call in your scripts and which scripts are used to build which part of each page.
Take advantage of part numbers, sku's, colours, size, models, anything that can be used to build your optimized description and keywords meta tags, page titles and page headings.
In addition, creating original content using a predefined script is easily "doable".
Just write a dynamically generated paragraph or two that can utilize your item specific information for any product in your database. You can even do this according to category and change it up as required so that the text reads differently according to which category and which product the user is looking at.
For example in VB Script, you might try this:
Code:
<p>This <%=itemdescription%> and <%=gem%> <%=model%> weighs <%=weight%> <%=ouncesorcarats%> and is sure to make a startling addition to your evening wardrobe. Made by <%=manufacturer%>, it's readily available in a wide assortment of finishes including <%=availablefinishes%>. </p>
<p>If you're considering this <%=model%>, you might also be interested in our fine selection of related <%=category%> including <%=relateditems%>.</p>
When output to HTML, you'd see something like this:
HTML Code:
<p>This sterling silver and ruby pendant weighs 4 ounces and is sure to make a startling addition to your evening wardrobe. Made by GemSmith of Paris, it's readily available in a wide assortment of finishes including brushed silver, antique silver and polished silver. </p>
<p>If you're considering this pendant, you might also be interested in our fine selection of related jewellery including rings, chains, bracelets and broaches.</p>
It takes a degree of familiarity in editing your cart code and some finagling to get it worded so you can use it anywhere but it does work quite well. You can even use a similar script to generate text links to your related items content and maximize your SEO efforts using targeted keywords and phrases.
.02