// JavaScript by Timothy Edwards, for Can2Can, copyright Can2Can, 1998, all rights reserved.
// support code for the book review circular list

// walk the list, up or down
function c2subUpList(vInt){
 c2vCL1 += vInt
 if (c2vCL1 == 0) {c2vCL1 = c2vCL2}
 if (c2vCL1 > c2vCL2) {c2vCL1 = 1}
 c2FillBookData(c2vCL1)
}

function c2SeriesData(){
// re-write the review
  c2FillBookData(c2vCL1)
// describe the series involved..
if (document.forms[0].ser.value == "ST:DS9"){document.forms[0].details.value=(document.forms[0].details.value + "  -- A Deep Space Nine Story, featuring Bajorans (Sito's is a Bajoran Site)")}
if (document.forms[0].ser.value == "Chicks"){document.forms[0].details.value=(document.forms[0].details.value + "  -- Ladies in Brass Bras..  Chicks in Chainmail is a humor series")}
if (document.forms[0].ser.value == "Clayton"){document.forms[0].details.value=(document.forms[0].details.value + " -- Jo Clayton writes some real kicking action, her heroines sound like Major Kira")}
if (document.forms[0].ser.value == "Ways"){document.forms[0].details.value=(document.forms[0].details.value + " -- Philosophy that sounds almost Bajoran")}
}

