
/* 
	BRIEF INSTRUCTIONS
	
	1. make sure the ad is EXACTLY 200px wide.
	2. put it into the ads folder inside zResources
	3. change the 4 lines below:
	   - change "no" to "yes" makes the ad appear
	   - AdFileName is the name of the ad file. For example: LiveUpPublishing.jpg
	   - WhereToGo is the link to go to when the ad is clicked: For example: http://www.lauraruggeri.com
	   - ToolTip is the text you see if you pause your mouse over the ad
	4. To remove the Spotlight ad just set ShowThisAd to "no"

	Please see the file named: Adscript_BelowTheSidebar.js for COMPLETE documentation. 

*/


var ShowThisAd		= "no";
var AdFileName      = "Ad-Outskirts2.jpg"
var WhereToGo		= "http://outskirtspress.com/agent.php?key=ReaderViews&page=index.html";
var ToolTip			= "Click this link to visit Outskirts Press";



// edit the following for the newsletter ad
// the new newsletter ad is created manually and not by editing lines like the above. RL.




/* NO EDITING BELOW THIS LINE ============================================== */


if (ShowThisAd == "yes") {
	var AdString		=  "<a href=\"";
		AdString		+=  WhereToGo;
		AdString		+=  "\"";
		AdString		+=  " title=\"";
		AdString		+=  ToolTip;
		AdString		+=  "\">";
		AdString        +=  "<img src=\"zResources/ads/";
		AdString        +=  AdFileName;
		AdString        +=  "\" style=\"margin:0px 0px 0px 0px;\" />";
		AdString		+=  "<\/a>";

	document.write("<h2 style=\"clear:both;margin-bottom:1px;\">Advertising</h2><div style=\"overflow:hidden;width:100%;margin-bottom:1em;\">");
	document.write(AdString);
	document.write("</div>");
}


// show the Newsletter ad. It's best not to play around with this too much. It affects all pages on the site.
// see /zResources/css_presentation.css for the formatting that shows the images.

	document.write("\n<h2 style=\"clear:both;margin-bottom:0px;\">Newsletters</h2>\n");
	document.write("<div id='nlSignup' >\n");
	document.write("\t<a   id='nlArchiveLink' href='http://www.readerviews.com/reviews_newsletter_archives.html' title='Visit newsletter archive' >Archive</a>\n");
	document.write("\t<a   id='nlSignupLink'  href='http://www.readerviews.com/signupforemail.html'              title='Signup for our newsletter and get free stuff!' ></a>\n");
	document.write("</div>");

