/* Puchi RSS Reader(code name) - Simple RSS reader with Javascript Copyright 2008 RSS Marketing, Richard Choi(bluesky.sora@gmail.com) http://www.rssm.jp */ ////////// Global values ////////////////////////////////////////////////////// var feed = { 'channelTitle':'【悩み】解決具体的体験的圧倒的極秘情報図書館(悩みのINFO)', 'channelLink':'http://nayamino.info/', 'entries': [ { 'title':'サイトマップ', 'link':'http://nayamino.info/sitemap.html', 'published':'2010-01-29' }, { 'title':'幼児教育', 'link':'http://nayamino.info/preschool.html', 'published':'2010-01-29' }, { 'title':'SEO対策', 'link':'http://nayamino.info/seo.html', 'published':'2009-10-26' }, { 'title':'英語・英会話(赤ちゃんから大人まで)', 'link':'http://nayamino.info/entry13.html', 'published':'2009-06-04' }, { 'title':'保険業(保険外交員)の営業', 'link':'http://nayamino.info/entry28.html', 'published':'2009-05-19' }, { 'title':'野球・ソフトボール上達のために', 'link':'http://nayamino.info/entry29.html', 'published':'2009-05-16' }, { 'title':'彼女が欲しい!モテない男の恋愛攻略読本', 'link':'http://nayamino.info/love.html', 'published':'2009-05-01' }, { 'title':'性の悩み', 'link':'http://nayamino.info/entry8.html', 'published':'2009-04-24' }, { 'title':'アトピー体質改善の方法', 'link':'http://nayamino.info/entry38.html', 'published':'2009-04-24' }, { 'title':'あがり症.赤面症.対人恐怖症', 'link':'http://nayamino.info/entry41.html', 'published':'2009-04-24' }, { 'title':'声優になるには', 'link':'http://nayamino.info/entry66.html', 'published':'2009-04-24' }, { 'title':'競馬投資で勝つ為の真実の必勝攻略方法・予想ソフト', 'link':'http://nayamino.info/entry5.html', 'published':'2009-04-23' }, { 'title':'飼い犬のしつけ方、間違っていませんか?', 'link':'http://nayamino.info/entry36.html', 'published':'2009-04-18' }, { 'title':'学習塾の生徒集め・運営・経営', 'link':'http://nayamino.info/entry65.html', 'published':'2009-04-18' }, { 'title':'貧乳・微乳の胸(おっぱい)を人並みに谷間のある胸に・バストのカップサイズをあげる方法', 'link':'http://nayamino.info/bust-up.html', 'published':'2009-04-17' }, ], 'uid':'1062','count':'15'}; var how_many_entires = 10; var toggle_title = 1; var toggle_date = 1; ////////// Function definition //////////////////////////////////////////////// function puchi_reader(feed) { var html = ''; // Channel title html += toggle_title ? '

' +(feed.channelTitle) + '

' : ''; // Entires html += ''; html += ''; document.getElementById('puchi_reader_' + feed.uid).innerHTML = html; return 1; } ////////// Main /////////////////////////////////////////////////////////////// function puchi_read() { var work_space = 'puchi_reader_1062' document.getElementById(work_space).innerHTML = '
読み込み中…読み込み中…
'; puchi_reader(feed); }