var articles =[ "coveredcallmnlarchive",



		"covered-call-basics",



		"option-approval-levels",



		"option-symbols",



		"option-expiration-cycles",



		"option-open-interest",



		"stock-option-adjustments",



		"callwriting_callbuying",



		"covered-calls-and-call-spreads",



		"q&aII",



		"option-delta",

		

		"implied-volatility-covered-calls",
		
		
		
		"coveredcallsnotjustabullishstrategy",



		"when-covered-call-written",



		"covered-call-fast-start",



		"debunking-covered-call-myths",



		"callwriter-really-works",



		"trading-scared-money",



		"covered-call-trade-order",



		"covered-call-return",



		"covered-call-trade-analysis-MRVL",
		
		"in-the-money-covered-calls",
		
		"why-out-of-the-money-calls",
		
		"coveredcallindex",
		
		"coveredcallwritingstyles",



		"charting-for-covered-call-writing",



		"confirm-chart-time",



		"stoplooklisten",



		"bellwether",



		"trendlines",



		"madi-moving-averages-covered-calls",



		"stockvolatilitylesson",
		
		
		"coveredcallstechnicalanalysis",



		"which-option-strike",



		"option-money-management",



		"option-trade-costs",



		"choosing-option-strike",



		"handling-earnings-reports",

		

		"covered-call-stop-order",

		

		"covered-calls-setting-stops",
		
		"planning-coveredcall-trade",



		"toughcall",



		"covered-call-unwind",



		"defensive-covered-calls",



		"covered-call-roll-1",



		"when-to-close-covered-call",
		
		"coveredcallsdroppingstock",

		"stockpullsback",
		
		"protectiveput-coveredcall",


		"when-to-write-covered-call",



		"covered-call-ways-to-profit",



		"maximizing-covered-call-returns",



		"deep-itm-covered-calls",



		"padlockportfolio",



		"writing-price-spikes",



		"option-expiration-day",



		"after-option-expiration",



		"protective-put-options",



		"shorter-covered-call-trades",



		"down-day-technique-covered-calls",



		"covered-calls-legging-in",

		

		"low-volatility-markets",

		

		"covered-call-news",
		
		"coveredcallrulenumberone",
		
		"coveredcalls-averagingdown",

		"delphiclesson",

		"insiderselling-countrywide",

		"superput-questions",

		"using-covered-call-calculator",



		"covered-call-trading-tips1",

		

		"covered-call-list-position",

		

		"other-option-strategies",



		"badmarkets",



		"leaps-covered-calls",



		"callsputsandshorts",



		"writing-naked-calls",



		"synthetic-covered-call",



		"call-option-spreads",



		"option-spread-trading-qa",



		"analysis-bear-call-option-spread",



		"option-straddles-and-strangles",



		"turnlosersintowinners",



		"option-credit-spread-tricks",



		"synthetic-option-trades",
		
		"writing-naked-puts",
		
		"covered-puts",



		"stock-option-tax-rules",



		"dividend-tax-rates",
		
		

		"dividend-basics",



		"currencymovements",



		"freecharting",



		"dividend-effects-stocks-options",



		"howoilaffectsstockprice",

		

		"halloweeneffect",
		
		"portfolio-margin",
		
		"one-point-strikes",
		
		"option-penny-strikes",
		
		"buy-and-hold"];
		
		



var ind = getpageindex();



if (ind>0){		



  var rta = '<a href="javascript:pageit()">List Articles</a>'



}else{		



  var rta = '&nbsp;'



}



  var pagebar = '<TABLE BORDER="0" CELLPADDING="4" CELLSPACING="0" WIDTH="100%" STYLE="border: 1 dotted" CLASS="toplinks">'



  pagebar += '<TR><TD WIDTH="100" ALIGN="LEFT"><a href="javascript:pageit('+"'prev'"+')">Previous Article</a></td><TD WIDTH="*" ALIGN="CENTER">' + rta + '</td><TD WIDTH="100" ALIGN="RIGHT"><a href="javascript:pageit('+"'next'"+')">Next Article</a></td></tr></table>'	



function pageit(dir){



  switch (dir)



  {



    case "next":



      ind ++;



      if (ind >= articles.length){ind = 0;}



      break;



    case "prev":



      ind --;



      if ( ind <0) {ind = articles.length - 1;}



      break;



    default:



      ind = 0;



  }



  window.location.href = articles[ind]+".htm";



}



function getpageindex() { 



  // Finds the index of the page in the articles array 



  var url = new String(window.location.href);



  // Find the nae of the page minus the extension



  var art = url.match(/.*\/(.*)\..*/);



   // Check for matches in our array.



  var re = new RegExp(art[1],"i");



  re.compile(art[1]);



  for (i=0; i<articles.length; i++) {



   if (re.exec(articles[i])) {



 //    if (re.test(articles[i])) {



      // It's a match.



      break;



    }



  }



  return i;



}



