<html>
<script language="javascript" type="text/javascript">
<!--
// This code is from Dynamic Web Coding www.dyn-web.com 
// Copyright 2002 by Sharon Paine Permission granted to use this code as long as this entire notice is included.
// Courtesy of SimplytheBest.net - http://simplythebest.net/scripts/

var dom = (document.getElementById) ? true : false;
var ns5 = ((navigator.userAgent.indexOf("Gecko")>-1) && dom) ? true: false;
var ie5 = ((navigator.userAgent.indexOf("MSIE")>-1) && dom) ? true : false;
var ns4 = (document.layers && !dom) ? true : false;
var ie4 = (document.all && !dom) ? true : false;
var nodyn = (!ns5 && !ns4 && !ie4 && !ie5) ? true : false;

var origWidth, origHeight;
if (ns4) {
	origWidth = window.innerWidth; origHeight = window.innerHeight;
	window.onresize = function() { if (window.innerWidth != origWidth || window.innerHeight != origHeight) history.go(0); }
}

if (nodyn) { event = "nope" }
var tipFollowMouse	= true;	
var tipWidth		= 133;
var offX		 	= 12;	// how far from mouse to show tip
var offY		 	= 12; 
var tipFontFamily 	= "Verdana, arial, helvetica, sans-serif";
var tipFontSize		= "8pt";
var tipFontColor		= "#000000";
var tipBgColor		= "#DDECFF"; 
var origBgColor 		= tipBgColor; // in case no bgColor set in array
var tipBorderColor 	= "#A0AFC0";
var tipBorderWidth 	= 1;
var tipBorderStyle 	= "solid";
var tipPadding	 	= 0;

var messages = new Array();
messages[0] = new Array('themes/Cardinal/forums/images/icon/pop1.gif','',"#F7F7F7");
messages[1] = new Array('themes/Cardinal/forums/images/icon/pop2.gif','',"#F7F7F7");
messages[2] = new Array('themes/Cardinal/forums/images/icon/pop3.gif','',"#F7F7F7");
messages[3] = new Array('themes/Cardinal/forums/images/icon/pop4.gif','',"#F7F7F7");
messages[4] = new Array('themes/Cardinal/forums/images/icon/pop5.gif','',"#F7F7F7");

if (document.images) {
	var theImgs = new Array();
	for (var i=0; i<messages.length; i++) {
  	theImgs[i] = new Image();
		theImgs[i].src = messages[i][0];
  }
}

var startStr = '<table width="' + tipWidth + '"><tr><td align="center" width="100%"><img src="';
var midStr = '" border="0"></td></tr><tr><td valign="top">';
var endStr = '</td></tr></table>';

var tooltip, tipcss;
function initTip() {
	if (nodyn) return;
	tooltip = (ns4)? document.tipDiv.document: (ie4)? document.all['tipDiv']: (ie5||ns5)? document.getElementById('tipDiv'): null;
	tipcss = (ns4)? document.tipDiv: tooltip.style;
	if (ie4||ie5||ns5) {	// ns4 would lose all this on rewrites
		tipcss.width = tipWidth+"px";
		tipcss.fontFamily = tipFontFamily;
		tipcss.fontSize = tipFontSize;
		tipcss.color = tipFontColor;
		tipcss.backgroundColor = tipBgColor;
		tipcss.borderColor = tipBorderColor;
		tipcss.borderWidth = tipBorderWidth+"px";
		tipcss.padding = tipPadding+"px";
		tipcss.borderStyle = tipBorderStyle;
	}
	if (tooltip&&tipFollowMouse) {
		if (ns4) document.captureEvents(Event.MOUSEMOVE);
		document.onmousemove = trackMouse;
	}
}

window.onload = initTip;

var t1,t2;	// for setTimeouts
var tipOn = false;	// check if over tooltip link
function doTooltip(evt,num) {

	if (!tooltip) return;
	if (t1) clearTimeout(t1);	if (t2) clearTimeout(t2);
	tipOn = true;
	// set colors if included in messages array
	if (messages[num][2])	var curBgColor = messages[num][2];
	else curBgColor = tipBgColor;
	if (messages[num][3])	var curFontColor = messages[num][3];
	else curFontColor = tipFontColor;
	if (ns4) {
		var tip = '<table bgcolor="' + tipBorderColor + '" width="' + tipWidth + '" cellspacing="0" cellpadding="' + tipBorderWidth + '" border="0"><tr><td><table bgcolor="' + curBgColor + '" width="100%" cellspacing="0" cellpadding="' + tipPadding + '" border="0"><tr><td>'+ startStr + messages[num][0] + midStr + '<span style="font-family:' + tipFontFamily + '; font-size:' + tipFontSize + '; color:' + curFontColor + ';">' + messages[num][1] + '</span>' + endStr + '</td></tr></table></td></tr></table>';
		tooltip.write(tip);
		tooltip.close();
	} else if (ie4||ie5||ns5) {
		var tip = startStr + messages[num][0] + midStr + '<span style="font-family:' + tipFontFamily + '; font-size:' + tipFontSize + '; color:' + curFontColor + ';">' + messages[num][1] + '</span>' + endStr;
		tipcss.backgroundColor = curBgColor;
	 	tooltip.innerHTML = tip;
	}
	if (!tipFollowMouse) positionTip(evt);
	else t1=setTimeout("tipcss.visibility='visible'",100);
}

var mouseX, mouseY;
function trackMouse(evt) {
	mouseX = (ns4||ns5)? evt.pageX: window.event.clientX + document.body.scrollLeft;
	mouseY = (ns4||ns5)? evt.pageY: window.event.clientY + document.body.scrollTop;
	if (tipOn) positionTip(evt);
}

function positionTip(evt) {
	if (!tipFollowMouse) {
		mouseX = (ns4||ns5)? evt.pageX: window.event.clientX + document.body.scrollLeft;
		mouseY = (ns4||ns5)? evt.pageY: window.event.clientY + document.body.scrollTop;
	}
	// tooltip width and height
	var tpWd = (ns4)? tooltip.width: (ie4||ie5)? tooltip.clientWidth: tooltip.offsetWidth;
	var tpHt = (ns4)? tooltip.height: (ie4||ie5)? tooltip.clientHeight: tooltip.offsetHeight;
	// document area in view (subtract scrollbar width for ns)
	var winWd = (ns4||ns5)? window.innerWidth-20+window.pageXOffset: document.body.clientWidth+document.body.scrollLeft;
	var winHt = (ns4||ns5)? window.innerHeight-20+window.pageYOffset: document.body.clientHeight+document.body.scrollTop;
	// check mouse position against tip and window dimensions
	// and position the tooltip 
	if ((mouseX+offX+tpWd)>winWd) 
		tipcss.left = (ns4)? mouseX-(tpWd+offX): mouseX-(tpWd+offX)+"px";
	else tipcss.left = (ns4)? mouseX+offX: mouseX+offX+"px";
	if ((mouseY+offY+tpHt)>winHt) 
		tipcss.top = (ns4)? winHt-(tpHt+offY): winHt-(tpHt+offY)+"px";
	else tipcss.top = (ns4)? mouseY+offY: mouseY+offY+"px";
	if (!tipFollowMouse) t1=setTimeout("tipcss.visibility='visible'",100);
}

function hideTip() {
	if (!tooltip) return;
	t2=setTimeout("tipcss.visibility='hidden'",100);
	tipOn = false;
}
//-->
</script>
<div id="tipDiv" style="position:absolute; visibility:hidden; z-index:100"></div>
</html>
<?xml version="1.0" encoding="ISO-8859-1"?>

<!DOCTYPE rss PUBLIC "-//Netscape Communications//DTD RSS 0.91//EN"
 "http://my.netscape.com/publish/formats/rss-0.91.dtd">

<rss version="0.91">

<channel>
<title>Sage of Consciousness Literary E-Zine</title>
<link>http://sageofcon.com/</link>
<description></description>
<language>en-us</language>

<item>
<title>Free Website for Authors and Poets</title>
<link>http://sageofcon.com//modules.php?name=News&amp;file=article&amp;sid=35</link>
<description>The Author's Bookstore&lt;br&gt;
www.theauthorsbookstore.com&lt;br&gt;
For more
information please contact:&lt;br&gt;Kelly Brooke&lt;br&gt;
pr@theauthorsbookstore.com&lt;br&gt;&lt;br&gt;For Immediate
Release
&lt;div align=&quot;center&quot;&gt;Free
Website Available to All Authors and Poets&lt;br&gt;&lt;/div&gt;
&lt;br&gt;March 17, 2008 - The Author&amp;rsquo;s Bookstore is a
new company offering many services to writers including a free website
where authors can promote books online to an international audience. They
also provide publishing opportunities for independent authors and
poets.&lt;br&gt;&lt;br&gt;Book printing has entered the digital age, with new
technology allowing for smaller quantities of books to be printed at a
cheaper cost. This is good news for authors and poets who wish to publish
their work independently. Self-publishers can now print, distribute, and
market their books at the same costs bequeathed to standard printers and
publishers.&lt;br&gt;&lt;br&gt;There are many notable writers taking the
self-publishing route, however, it is difficult for the public to access
their work. By offering a free website, it is the aim of The
Author&amp;rsquo;s Bookstore to unite all independent authors and poets
together into one online store where readers can browse by category for
quality books. On their free website, writers can list physical stores
where people can buy their book, provide a direct link to their book in
any online shop it is available in, and can even sell their book online
themselves.&lt;br&gt; &lt;br&gt; The Chapter/Excerpt of the Year 2008 is now
accepting entries. Self-publishers, poets, and short stories are all
welcome. The grand prize is $1000 and an extensive marketing package
including a worldwide press release and 500 bookmarks. There are 10 first
prize winners of $50. Deadline is July 31, 2008.&lt;br&gt;&lt;br&gt;The
Author&amp;rsquo;s Bookstore also offers affordable publishing packages to
help independent authors and poets in the design, distribution, and
marketing of their work, so they receive all the benefits of a publishing
house but retain full copyright of their material and earn one hundred
percent royalties on sales of their book.&lt;br&gt;&lt;br&gt;Books published through The Author&amp;rsquo;s Bookstore are automatically
made available to customers, retailers, and wholesalers worldwide
including Amazon, Ingram, Bertrams and Gardners. Using print on demand technology,
all printing costs are removed at the time of purchase, so authors only
pay for what they sell. This eliminates any need for bulk ordering or
warehousing. However, if authors would like copies printed for personal
distribution, low printing costs are offered starting at $3.00 a book.&lt;br&gt;&lt;br&gt;Monthly sales reports are emailed to authors, so they know exactly
where and how their book is selling at all times. Publishing packages have
a one time set-up fee ranging between $49.99 - $485 and include the
design, formatting, distribution, fulfillment, and marketing of a book.
Fiction, non-fiction, poetry, and even short story collections are
welcomed.&lt;br&gt;&lt;br&gt;For a limited time, authors and poets who publish
with The Author&amp;rsquo;s Bookstore will receive a free bottle of champagne
in celebration of finishing their book.&lt;br&gt; &lt;br&gt;More information about The Author&amp;rsquo;s Bookstore
and their services can be found at &lt;a href=&quot;http://www.theauthorsbookstore.co.uk/&quot;&gt;www.theauthorsbookstore.com&lt;/a&gt;. &lt;br&gt;&lt;br&gt;Please direct all media inquiries to pr@theauthorsbookstore.com or visit
www.theauthorsbookstore.com/about.html for more information.&lt;br&gt;&lt;br&gt;
&lt;div align=&quot;center&quot;&gt;--End--&lt;/div&gt;</description>
</item>

<item>
<title>BluePrintReview</title>
<link>http://sageofcon.com//modules.php?name=News&amp;file=article&amp;sid=34</link>
<description>&lt;div class=&quot;MsoPlainText&quot;&gt;maybe at the end. of the year. it&amp;rsquo;s coming closer at the permanent speed of a day per night, to reach 2007 in about 7 weeks. to already add some colours to the new year, i wrapped up 12 places in 12 calendar pages. the result is coming with a sunset, and is named: inversive ways &amp;ndash; calendar 2007. &lt;br&gt;&lt;/div&gt;&lt;br&gt;&lt;div class=&quot;MsoPlainText&quot;&gt;&lt;br&gt;&lt;/div&gt;&lt;div class=&quot;MsoPlainText&quot;&gt;&lt;br&gt;get a copy and turn the page whenever you feel like a trip through time and space. the calendar, here: &lt;strong&gt;&lt;a href=&quot;http://www.blueprintreview.de/news.htm&quot;&gt;http://www.blueprintreview.de/news.htm&lt;/a&gt;&lt;/strong&gt;&lt;br&gt;&lt;/div&gt;&lt;div class=&quot;MsoPlainText&quot;&gt;this news-page-link also includes some more news in time:&lt;br&gt;&lt;/div&gt;&lt;div class=&quot;MsoPlainText&quot;&gt;as every year, there will be Christmas happening at the end of December. if you are looking for gifts, and have a friend or family member who might be fond of monuments in paper format, then the mo(nu)ment issue or blueprint might be the perfect fit. &lt;br&gt;&lt;/div&gt;&lt;br&gt;&lt;div class=&quot;MsoPlainText&quot;&gt;&lt;br&gt;&lt;/div&gt;&lt;br&gt;&lt;div class=&quot;MsoPlainText&quot;&gt;also, if November makes you feel like writing poems and short stories, then copy and paste one of them in a mail, and send it by end of November &amp;ndash; i am starting to gather material for the upcoming online issue of blueprintreview now.&lt;br&gt;&lt;/div&gt;&lt;br&gt;&lt;div class=&quot;MsoPlainText&quot;&gt;&lt;br&gt;&lt;/div&gt;&lt;br&gt;&lt;div class=&quot;MsoPlainText&quot;&gt;&lt;strong&gt;here the blue print news link again, it also includes the submission info: &lt;a href=&quot;http://www.blueprintreview.de/news.htm&quot;&gt;http://www.blueprintreview.de/news.htm&lt;/a&gt;&lt;br&gt;&lt;/strong&gt;&lt;/div&gt;&lt;br&gt;&lt;div class=&quot;MsoPlainText&quot;&gt;&lt;br&gt;&lt;/div&gt;&lt;br&gt;&lt;div class=&quot;MsoPlainText&quot;&gt;have a lovely November!&lt;br&gt;&lt;/div&gt;&lt;br&gt;&lt;div class=&quot;MsoPlainText&quot;&gt;doro&lt;br&gt;&lt;/div&gt;&lt;br&gt;</description>
</item>

<item>
<title>Of Ice and Steel</title>
<link>http://sageofcon.com//modules.php?name=News&amp;file=article&amp;sid=33</link>
<description>&lt;strong&gt;&lt;br&gt;&lt;a href=&quot;http://www.oficeandsteel.com/index01.htm&quot;&gt;&lt;/a&gt;&lt;strong&gt;Of Ice and Steel&lt;/strong&gt; &lt;div&gt;D. Clayton Meadows &lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;quot;'An extremely engaging tale that grabs your attention and doesn't let go, OF ICE AND STEEL poses a thought-provoking cataclysmic undersea contest across a vivid fabric of space and time! Don Meadows combines an impressive natural storytelling gift with a veteran submariner's powerful grasp of modern and U-boat traditions and tactics!'--Joe Buff, author of SEAS OF CRISIS and STRAITS OF POWER&lt;/strong&gt; &lt;br&gt;&lt;div&gt;&lt;strong&gt;&lt;br&gt;OF ICE AND STEEL&lt;/strong&gt; &lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;In the waste of the Arctic ice, a deadly relic lies, frozen and forgotten. When a new Russian revolution brings man kind to the very brink of oblivion, the sleeping relic is loosed on an already frightened world. Ships begin to disappear. The super powers accuse one another, as all nations, draw their battle lines. A nuclear devise is stolen, to be delivered to the most wanted and murderous terrorist in history. It is a time when only a spark is required to ignite a nuclear exchange. One man has the answer. Three men and three submarines must overcome mistrust, and their own demons to explain the unexplainable and deliver the world from a global holocaust.&amp;quot; &lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.oficeandsteel.com/index01.htm&quot;&gt;&lt;strong&gt;http://www.oficeandsteel.com/index01.htm&lt;/strong&gt;&lt;/a&gt;&amp;nbsp;&lt;/div&gt;&lt;br&gt;</description>
</item>

<item>
<title>Blue Print Review's mo(nu)ment</title>
<link>http://sageofcon.com//modules.php?name=News&amp;file=article&amp;sid=32</link>
<description>In this wonderful Anthology you will find some of the past &lt;br&gt;and present contributors to &lt;strong&gt;Sage of Consciousness&lt;/strong&gt; E-Zine. &lt;br&gt;Zdravka Evitoma, Dorothee Lang, Sharon Rothenfluch Cooper, &lt;br&gt;and Jewel Martin have works in this issue. &lt;br&gt;Go check it out!&lt;br&gt;&lt;br&gt;Michelle Williams&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;div align=&quot;center&quot;&gt;&lt;a href=&quot;http://www.lulu.com/content/277665&quot;&gt;&lt;/a&gt;&lt;strong&gt;&amp;nbsp;&lt;br&gt;&lt;/strong&gt;mo(nu)ment &lt;br&gt;&lt;br&gt;a reflection on moments and monuments&lt;br&gt;in 70 unique pieces&lt;br&gt;contributed by 30 authors&lt;br&gt;from 5 continents&lt;br&gt;&lt;br&gt;reaching from the&lt;em&gt; Silent Signal&lt;/em&gt;&lt;br&gt;of a &lt;em&gt;Past Insignificant&lt;/em&gt;&lt;br&gt;&lt;em&gt;Waiting&lt;/em&gt; in the &lt;em&gt;View Finder&lt;/em&gt;&lt;br&gt;&lt;em&gt;as i walk&lt;/em&gt; from&lt;em&gt; Absolution&lt;br&gt;&lt;/em&gt;&lt;br&gt;to the&lt;em&gt; Replicas of Reality&lt;/em&gt;&lt;br&gt;&lt;em&gt;In the Glow&lt;/em&gt; of &lt;em&gt;Highway 114&lt;/em&gt;&lt;br&gt;&lt;em&gt;When I sink&lt;/em&gt; in the &lt;em&gt;Dawnpour &lt;/em&gt;&lt;br&gt;of an &lt;em&gt;Hourglass&lt;/em&gt; called &lt;em&gt;Memory&lt;/em&gt; &lt;br&gt;&lt;br&gt;&lt;a href=&quot;monupeek.htm&quot;&gt;a peek into the monuments&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.lulu.com/browse/preview.php?fCID=277665&quot;&gt;online-preview&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;monubios.htm&quot;&gt;list of contributors&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.lulu.com/content/277665&quot;&gt;how to order the mo(nu)ment&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;strong&gt;mo(nu)ment&lt;br&gt;&lt;/strong&gt;a BluePrintReview theme issue&lt;br&gt;168 pages, paperback&lt;br&gt;print $11.85 / e-book $3.95&lt;br&gt;&lt;/div&gt;</description>
</item>

<item>
<title>Cliches Away!</title>
<link>http://sageofcon.com//modules.php?name=News&amp;file=article&amp;sid=30</link>
<description>Cliches Away!By &lt;a href=&quot;http://ezinearticles.com/?expert=Holly_Bliss&quot;&gt;Holly Bliss&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;light&quot;&gt;&lt;div&gt;Do you cringe when you write cliches in your work but find it difficult to avoid them or think of something more creative? Try this exercise and bulk up your creative muscles.&lt;/div&gt;&lt;br&gt;&lt;/div&gt;</description>
</item>

<item>
<title>Finding the Right Publication for You</title>
<link>http://sageofcon.com//modules.php?name=News&amp;file=article&amp;sid=29</link>
<description>Finding the Right Publication for YouBy &lt;a href=&quot;http://ezinearticles.com/?expert=Cheryl_Wright&quot;&gt;Cheryl Wright&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;light&quot;&gt;&lt;div&gt;I recently answered a call for submissions to write articles for a newsletter. This was to be an ongoing position, but the advertisement didn&amp;rsquo;t mention remuneration, article length, or turnaround time.&lt;/div&gt;&lt;br&gt;&lt;/div&gt;</description>
</item>

<item>
<title>Gift of Gabe</title>
<link>http://sageofcon.com//modules.php?name=News&amp;file=article&amp;sid=28</link>
<description>&amp;nbsp;&amp;nbsp;&amp;nbsp; PRESS RELEASE&lt;br&gt;&lt;br&gt;DATE: 6/4/06&lt;br&gt;FROM: Gift of Gabe Promotions&lt;br&gt;CONTACT PERSON: Ann Russo&lt;br&gt;EMAIL: &lt;a href=&quot;mailto:mediarelations@giftofgabe.com&quot;&gt;mediarelations@giftofgabe.com&lt;/a&gt;&lt;br&gt;URL: &lt;a href=&quot;http://www.giftofgabe.com/&quot;&gt;http://www.giftofgabe.com/&lt;/a&gt;&lt;br&gt;&lt;br&gt;HIGHER LEVEL COMMUNICATION&lt;br&gt;&lt;br&gt;&amp;nbsp;Few people have heard of the novel, The Gift of Gabe. A year ago even fewer people had heard of it. In these days of big budget mass marketing books that are published by small publishers often have difficulty finding an audience. Without an advertising budget, word of this book has been spreading. Early readers fascinated by the book's inclusive spirituality, told others. An internet forum for people who study Gnosticism picked up on the book last summer making it their topic of discussion for two months. </description>
</item>

<item>
<title>Anthologies: Your Shortcut to Getting Published</title>
<link>http://sageofcon.com//modules.php?name=News&amp;file=article&amp;sid=27</link>
<description>Anthologies: Your Shortcut to Getting PublishedBy &lt;a href=&quot;http://ezinearticles.com/?expert=Sophfronia_Scott&quot;&gt;Sophfronia Scott&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;light&quot;&gt;&lt;div&gt;What do you get when you mix a handful of writers, a hot topic and a snazzy title? You get an anthology--and one of the more popular form of books being published today.&lt;/div&gt;&lt;br&gt;&lt;/div&gt;</description>
</item>

<item>
<title>Writing and Revising: How Much Is Too Much?</title>
<link>http://sageofcon.com//modules.php?name=News&amp;file=article&amp;sid=26</link>
<description>Writing and Revising: How Much Is Too Much?By &lt;a href=&quot;http://ezinearticles.com/?expert=Ceci_Miller&quot;&gt;Ceci Miller&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;light&quot;&gt;&lt;div&gt;Every writer must revise. It's an icky fact of life. It's where perspiration meets inspiration; it's what separates the tough guys from the talkers and posers. I'm a tough guy when I fearlessly excise those extras from my sentences. Not always a breeze. But as one of my favorite mentors often says, &amp;quot;Nothing hard is ever easy.&amp;quot;&lt;/div&gt;&lt;br&gt;&lt;/div&gt;</description>
</item>

<item>
<title>Submission Call</title>
<link>http://sageofcon.com//modules.php?name=News&amp;file=article&amp;sid=25</link>
<description>~~~~&lt;br&gt;&lt;strong&gt;Call for submissions: &lt;br&gt;BluePrintReview theme issue &amp;quot;mo(nu)ment&amp;quot;&lt;br&gt;&lt;/strong&gt;The BluePrintReview, an international online fiction and poetry magazine, invites submissions for its first print issue: &amp;quot;mo(nu)ment&amp;quot;. Send momentary or monumental nu fiction, short stories, non-fiction, poetry, photography and sketches; stories up to 2000 words, photos b/w, deadline: 07.May. More details: &lt;a href=&quot;http://www.blueprintreview.de/6monu.htm&quot;&gt;http://www.blueprintreview.de/6monu.htm&lt;/a&gt;&lt;br&gt;~~~~</description>
</item>

</channel>
</rss>