<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
    <title>歯科医院クチコミ人気ランキング</title>
    <link rel="alternate" type="text/html" href="http://wom-tv.com/dental/" />
    <link rel="self" type="application/atom+xml" href="http://wom-tv.com/dental/atom.xml" />
    <id>tag:wom-tv.com,2008-12-28:/dental//12</id>
    <updated>2010-03-16T18:14:42Z</updated>
    
    <generator uri="http://www.sixapart.com/movabletype/">Movable Type Pro 4.22-ja</generator>

<entry>
    <title>ワイズデンタルクリニック（東京都国分寺市）恋ヶ窪</title>
    <link rel="alternate" type="text/html" href="http://wom-tv.com/dental/0240312.php" />
    <id>tag:wom-tv.com,2010:/dental//12.17515</id>

    <published>2010-03-16T18:10:45Z</published>
    <updated>2010-03-16T18:14:42Z</updated>

    <summary>国分寺市のワイズ・デンタルクリニック。恋ヶ窪駅から徒歩10分の歯医者。</summary>
    <author>
        <name>嶋野孝彦</name>
        
    </author>
    
        <category term="13東京都" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="嶋野孝彦" label="嶋野孝彦" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="恋ヶ窪駅" label="恋ヶ窪駅" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="東京都" label="東京都" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="東京都国分寺市" label="東京都国分寺市" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="ja" xml:base="http://wom-tv.com/dental/">
        <![CDATA[<div class="informationpage">
<div class="pageimage">
<p><img src="http://wom-tv.org/info/4320.jpg" alt="外観写真" /></p>
</div>
<div class="description">
<p>国分寺市のワイズ・デンタルクリニック。恋ヶ窪駅から徒歩10分の歯医者。</p>
</div>
<div class="attribute">
<dl class="atttop">
<dt>医院名</dt>
<dd>ワイズ・デンタルクリニック</dd>
</dl>
<dl>
<dt>住所</dt>
<dd>東京都国分寺市戸倉4－45－5 1F<br />
<a href="#map" title="地図・交通案内を見る">地図・交通案内を見る</a></dd>
</dl>
<dl>
<dt>アクセス</dt>
<dd>西武国分寺線「恋ヶ窪」駅より徒歩10分<br />
JR「国立」駅より北口　戸倉循環「並木町1丁目」バス停0分</dd>
</dl>
<dl>
<dt>電話番号</dt>
<dd>042-326-9096</dd>
</dl>
<dl>
<dt>受付時間</dt>
<dd>9:30～13:30  15:00～20:00<br /></dd>
</dl>
<dl>
<dt>定休日</dt>
<dd>水曜・祝日、月に一度日曜に不定休</dd>
</dl>
<dl>
<dt>カード</dt>
<dd>VISA Master JCB Diners AMEX</dd>
</dl>
<dl>
<dt>メニュー</dt>
<dd>歯科 / 矯正歯科 / ホワイト二ング / インプラント / 噛み合わせ治療</dd>
</dl>
<dl>
<dt>設備</dt>
<dd>駐車場 </dd>
</dl>
<dl>
<dt>ホームページ</dt>
<dd><span class="hp"><a href="http://www.ys-dc.com/pc/index.html" target="_blank">http://www.ys-dc.com/pc/index.html</a></span></dd>
</dl>
<!--
<dl>
<dt>ブログ</dt>
<dd><span class="blog"><a href="http://www.ys-dc.com/pc/index.html/grande_blog/" target="_blank">http://www.ys-dc.com/pc/index.html/grande_blog/</a></span></dd
</dl>
<dl class="attbottom">
<dt>携帯サイト</dt>
<dd><span class="blog"><a href="【医院（院）の携帯サイトURLを入力】" target="_blank">【医院（院）の携帯サイトURLを入力】</a></span></dd>
</dl>-->
</div>
<!--
<div class="infonew">
<div class="h3">
<h3>新着情報</h3>
</div>
<script type="text/javascript" src="http://www.google.com/jsapi?key=ABQIAAAAYc4d0BghdN25mdBcaAVRMBSwl1VFnqfIRIA0v-3T1orz17-6TxQ8Gi3-6z6O7DWgRw2K1lqzi6E-zA"></script>
<script type="text/javascript">
google.load("feeds", "1");
function initialize() {
var feedurl = "http://www.ys-dc.com/pc/index.html/grande_blog/feed";
var feed = new google.feeds.Feed(feedurl);
feed.setNumEntries(8);
feed.load(dispfeed);
function dispfeed(result){
if (!result.error){
var container = document.getElementById("feed");
var htmlstr = "";
htmlstr += "<ul>";
for (var i = 0; i < result.feed.entries.length; i++) {
var entry = result.feed.entries[i];
htmlstr += "<li>"
htmlstr += '<a href="' + entry.link + '" target="_blank">' + entry.title + '</a>';
htmlstr += "&nbsp;&nbsp;"
var strdate = createDateString(entry.publishedDate);
htmlstr += "(" + strdate + ")";
htmlstr += "</li>"
}
htmlstr += "</ul>";
 container.innerHTML = htmlstr;
}else{
 alert(result.error.code + ":" + result.error.message);
}
}
}
function createDateString(publishedDate){
var pdate = new Date(publishedDate);
var pday = pdate.getDate();
var pmonth = pdate.getMonth() + 1;
var pyear = pdate.getFullYear();
var strdate = pyear + "年" + pmonth + "月" + pday + "日";
return strdate;
}
google.setOnLoadCallback(initialize);
</script>
<div id="feed"></div>
</div>-->
<div id="map">
<h3>地図</h3>
<p><iframe width="450" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.co.jp/maps?f=q&amp;source=s_q&amp;hl=ja&amp;geocode=&amp;q=%E6%9D%B1%E4%BA%AC%E9%83%BD+%E5%9B%BD%E5%88%86%E5%AF%BA%E5%B8%82+%E6%88%B8%E5%80%894%EF%BC%8D45%EF%BC%8D5%E3%80%80%E3%83%AF%E3%82%A4%E3%82%BA%E3%83%87%E3%83%B3%E3%82%BF%E3%83%AB&amp;sll=35.713412,139.457508&amp;sspn=0.049689,0.036736&amp;g=%E6%9D%B1%E4%BA%AC%E9%83%BD+%E5%9B%BD%E5%88%86%E5%AF%BA%E5%B8%82+%E6%88%B8%E5%80%894%EF%BC%8D45%EF%BC%8D5&amp;brcurrent=3,0x6018e6a882bcb889:0x528656067d5a66ef,0&amp;ie=UTF8&amp;hq=%E3%83%AF%E3%82%A4%E3%82%BA%E3%83%87%E3%83%B3%E3%82%BF%E3%83%AB&amp;hnear=%E3%80%92185-0003+%E6%9D%B1%E4%BA%AC%E9%83%BD%E5%9B%BD%E5%88%86%E5%AF%BA%E5%B8%82%E6%88%B8%E5%80%89%EF%BC%94%E4%B8%81%E7%9B%AE%EF%BC%94%EF%BC%95&amp;cid=17971964924627306529&amp;ll=35.722545,139.461393&amp;spn=0.024389,0.038624&amp;z=14&amp;iwloc=A&amp;output=embed"></iframe><br /><small><a href="http://maps.google.co.jp/maps?f=q&amp;source=embed&amp;hl=ja&amp;geocode=&amp;q=%E6%9D%B1%E4%BA%AC%E9%83%BD+%E5%9B%BD%E5%88%86%E5%AF%BA%E5%B8%82+%E6%88%B8%E5%80%894%EF%BC%8D45%EF%BC%8D5%E3%80%80%E3%83%AF%E3%82%A4%E3%82%BA%E3%83%87%E3%83%B3%E3%82%BF%E3%83%AB&amp;sll=35.713412,139.457508&amp;sspn=0.049689,0.036736&amp;g=%E6%9D%B1%E4%BA%AC%E9%83%BD+%E5%9B%BD%E5%88%86%E5%AF%BA%E5%B8%82+%E6%88%B8%E5%80%894%EF%BC%8D45%EF%BC%8D5&amp;brcurrent=3,0x6018e6a882bcb889:0x528656067d5a66ef,0&amp;ie=UTF8&amp;hq=%E3%83%AF%E3%82%A4%E3%82%BA%E3%83%87%E3%83%B3%E3%82%BF%E3%83%AB&amp;hnear=%E3%80%92185-0003+%E6%9D%B1%E4%BA%AC%E9%83%BD%E5%9B%BD%E5%88%86%E5%AF%BA%E5%B8%82%E6%88%B8%E5%80%89%EF%BC%94%E4%B8%81%E7%9B%AE%EF%BC%94%EF%BC%95&amp;cid=17971964924627306529&amp;ll=35.722545,139.461393&amp;spn=0.024389,0.038624&amp;z=14&amp;iwloc=A" style="color:#0000FF;text-align:left">大きな地図で見る</a></small></p>
</div>
<div id="access">
<h3>交通案内</h3>
<p>西武国分寺線「恋ヶ窪」駅より　徒歩10分<br />
JR「国立」駅より北口　戸倉循環「並木町1丁目」バス停0分</p>
</div>
</div>
]]>
        
    </content>
</entry>

<entry>
    <title>朝田歯科（大阪府茨木市）茨木市</title>
    <link rel="alternate" type="text/html" href="http://wom-tv.com/dental/0240310.php" />
    <id>tag:wom-tv.com,2010:/dental//12.17508</id>

    <published>2010-03-16T16:57:52Z</published>
    <updated>2010-03-16T17:02:06Z</updated>

    <summary>茨木市の朝田歯科医院。茨木市駅からバスで10分の歯医者。</summary>
    <author>
        <name>嶋野孝彦</name>
        
    </author>
    
        <category term="27大阪府" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="大阪府" label="大阪府" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="大阪府茨木市" label="大阪府茨木市" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="嶋野孝彦" label="嶋野孝彦" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="茨木市駅" label="茨木市駅" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="ja" xml:base="http://wom-tv.com/dental/">
        <![CDATA[<div class="informationpage">
<div class="pageimage">
<p><img src="http://wom-tv.org/info/4321.jpg" alt="内観写真" /></p>
</div>
<div class="description">
<p>茨木市の朝田歯科医院。茨木市駅からバスで10分の歯医者。</p>
</div>
<div class="attribute">
<dl class="atttop">
<dt>医院名</dt>
<dd>医療法人 朝田歯科</dd>
</dl>
<dl>
<dt>住所</dt>
<dd>大阪府茨木市玉櫛2-29-20 サンハイム玉櫛1F<br />
<a href="#map" title="地図・交通案内を見る">地図・交通案内を見る</a></dd>
</dl>
<dl>
<dt>アクセス</dt>
<dd>阪急京都線茨木市駅南口よりバスで約10分
阪急京都線南茨木駅より徒歩15分</dd>
</dl>
<dl>
<dt>電話番号</dt>
<dd>072-632-8841</dd>
</dl>
<dl>
<dt>受付時間</dt>
<dd>9：30～12：30<br />
15：00～19：15<br />
但し木曜及び土曜午後は<br />
14：00～17：30</dd>
</dl>
<dl>
<dt>定休日</dt>
<dd>日曜、祝日、第1,4木曜、第2,3土曜</dd>
</dl>
<dl>
<dt>カード</dt>
<dd>VISA Master JCB Diners AMEX</dd>
</dl>
<dl>
<dt>メニュー</dt>
<dd>歯科 / 矯正歯科 / ホワイト二ング / インプラント / 噛み合わせ治療</dd>
</dl>
<dl>
<dt>設備</dt>
<dd>駐車場完備</dd>
</dl>
<dl>
<dt>ホームページ</dt>
<dd><span class="hp"><a href="http://www.asada-dental.com/" target="_blank">http://www.asada-dental.com/</a></span></dd>
</dl>
<!--
<dl>
<dt>ブログ</dt>
<dd><span class="blog"><a href="http://www.asada-dental.com//grande_blog/" target="_blank">http://www.asada-dental.com//grande_blog/</a></span></dd>
</dl>-->
<!--
<dl class="attbottom">
<dt>携帯サイト</dt>
<dd><span class="blog"><a href="【医院（院）の携帯サイトURLを入力】" target="_blank">【医院（院）の携帯サイトURLを入力】</a></span></dd>
</dl>-->
</div>
<!--
<div class="infonew">
<div class="h3">
<h3>新着情報</h3>
</div>
<script type="text/javascript" src="http://www.google.com/jsapi?key=ABQIAAAAYc4d0BghdN25mdBcaAVRMBSwl1VFnqfIRIA0v-3T1orz17-6TxQ8Gi3-6z6O7DWgRw2K1lqzi6E-zA"></script>
<script type="text/javascript">
google.load("feeds", "1");
function initialize() {
var feedurl = "http://www.asada-dental.com//grande_blog/feed";
var feed = new google.feeds.Feed(feedurl);
feed.setNumEntries(8);
feed.load(dispfeed);
function dispfeed(result){
if (!result.error){
var container = document.getElementById("feed");
var htmlstr = "";
htmlstr += "<ul>";
for (var i = 0; i < result.feed.entries.length; i++) {
var entry = result.feed.entries[i];
htmlstr += "<li>"
htmlstr += '<a href="' + entry.link + '" target="_blank">' + entry.title + '</a>';
htmlstr += "&nbsp;&nbsp;"
var strdate = createDateString(entry.publishedDate);
htmlstr += "(" + strdate + ")";
htmlstr += "</li>"
}
htmlstr += "</ul>";
 container.innerHTML = htmlstr;
}else{
 alert(result.error.code + ":" + result.error.message);
}
}
}
function createDateString(publishedDate){
var pdate = new Date(publishedDate);
var pday = pdate.getDate();
var pmonth = pdate.getMonth() + 1;
var pyear = pdate.getFullYear();
var strdate = pyear + "年" + pmonth + "月" + pday + "日";
return strdate;
}
google.setOnLoadCallback(initialize);
</script>
<div id="feed"></div>
</div>-->
<div id="map">
<h3>地図</h3>
<p><iframe width="450" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.co.jp/maps?f=q&amp;source=s_q&amp;hl=ja&amp;geocode=&amp;q=%E5%A4%A7%E9%98%AA%E5%BA%9C%E8%8C%A8%E6%9C%A8%E5%B8%82%E7%8E%89%E6%AB%9B2-29-20%E3%80%80%E6%9C%9D%E7%94%B0&amp;sll=34.801185,135.577418&amp;sspn=0.006475,0.006942&amp;g=%E5%A4%A7%E9%98%AA%E5%BA%9C%E8%8C%A8%E6%9C%A8%E5%B8%82%E7%8E%89%E6%AB%9B2-29-20&amp;brcurrent=3,0x6000e2eed0558427:0x40212e8ba2061257,0&amp;ie=UTF8&amp;hq=%E6%9C%9D%E7%94%B0&amp;hnear=%E3%80%92567-0851+%E5%A4%A7%E9%98%AA%E5%BA%9C%E8%8C%A8%E6%9C%A8%E5%B8%82%E7%8E%89%E6%AB%9B%EF%BC%92%E4%B8%81%E7%9B%AE%EF%BC%92%EF%BC%99%E2%88%92%EF%BC%92%EF%BC%90&amp;cid=416510651026838343&amp;ll=34.811619,135.576267&amp;spn=0.024664,0.038624&amp;z=14&amp;iwloc=A&amp;output=embed"></iframe><br /><small><a href="http://maps.google.co.jp/maps?f=q&amp;source=embed&amp;hl=ja&amp;geocode=&amp;q=%E5%A4%A7%E9%98%AA%E5%BA%9C%E8%8C%A8%E6%9C%A8%E5%B8%82%E7%8E%89%E6%AB%9B2-29-20%E3%80%80%E6%9C%9D%E7%94%B0&amp;sll=34.801185,135.577418&amp;sspn=0.006475,0.006942&amp;g=%E5%A4%A7%E9%98%AA%E5%BA%9C%E8%8C%A8%E6%9C%A8%E5%B8%82%E7%8E%89%E6%AB%9B2-29-20&amp;brcurrent=3,0x6000e2eed0558427:0x40212e8ba2061257,0&amp;ie=UTF8&amp;hq=%E6%9C%9D%E7%94%B0&amp;hnear=%E3%80%92567-0851+%E5%A4%A7%E9%98%AA%E5%BA%9C%E8%8C%A8%E6%9C%A8%E5%B8%82%E7%8E%89%E6%AB%9B%EF%BC%92%E4%B8%81%E7%9B%AE%EF%BC%92%EF%BC%99%E2%88%92%EF%BC%92%EF%BC%90&amp;cid=416510651026838343&amp;ll=34.811619,135.576267&amp;spn=0.024664,0.038624&amp;z=14&amp;iwloc=A" style="color:#0000FF;text-align:left">大きな地図で見る</a></small></p>
</div>
<div id="access">
<h3>交通案内</h3>
<p>阪急京都線茨木市駅南口より近鉄バス水尾3丁目行きバス
玉櫛2丁目バス停徒歩1分です</p>
</div>
</div>
]]>
        
    </content>
</entry>

<entry>
    <title>ソフィア歯科クリニック（横浜市戸塚区）東戸塚駅</title>
    <link rel="alternate" type="text/html" href="http://wom-tv.com/dental/0170212.php" />
    <id>tag:wom-tv.com,2010:/dental//12.17488</id>

    <published>2010-03-15T02:31:21Z</published>
    <updated>2010-03-15T02:36:40Z</updated>

    <summary>横浜市戸塚区の歯科医院 ソフィア歯科クリニック。東戸塚駅から徒歩2分で、ホワイトニングやインプラントがオススメ。</summary>
    <author>
        <name>稲見春樹</name>
        
    </author>
    
        <category term="14神奈川県" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="東戸塚駅" label="東戸塚駅" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="神奈川県" label="神奈川県" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="神奈川県横浜市" label="神奈川県横浜市" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="稲見春樹" label="稲見春樹" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="ja" xml:base="http://wom-tv.com/dental/">
        <![CDATA[<div class="informationpage">
<div class="pageimage">
<p><img src="http://wom-tv.org/info/4190.jpg" alt="内外観写真" /></p>
</div>
<div class="description">
<p>横浜市戸塚区の歯科医院 ソフィア歯科クリニック。東戸塚駅から徒歩2分で、ホワイトニングやインプラントがオススメ。</p>
</div>
<div class="attribute">
<dl class="atttop">
<dt>店舗名</dt>
<dd> 医療法人社団愛和会　ソフィア歯科クリニック </dd>
</dl>
<dl>
<dt>住所</dt>
<dd> 神奈川県横浜市戸塚区品濃町548-2 NSビル4F <br />
<a href="#map" title="地図・交通案内を見る">地図・交通案内を見る</a></dd>
</dl>
<dl>
<dt>アクセス</dt>
<dd> JR横須賀線 東戸塚駅 徒歩2分 </dd>
</dl>
<dl>
<dt>電話番号</dt>
<dd> 045-825-1106 </dd>
</dl>
<dl>
<dt>受付時間</dt>
<dd> 9:30～13:00 / 14:00～18:30 </dd>
</dl>
<dl>
<dt>定休日</dt>
<dd> 木曜、日曜（ただし祝日の週の木曜は診療しております） </dd>
</dl>
<dl>
<dt>カード</dt>
<dd> 未対応 </dd>
</dl>
<dl>
<dt>メニュー</dt>
<dd> 一般、小児、審美、インプラント、ホワイトニング </dd>
</dl>
<dl>
<dt>設備</dt>
<dd> 駐車場、キッズルーム、ブラッシングルーム </dd>
</dl>
<dl>
<dt>ホームページ</dt>
<dd><span class="hp"><a href="http://www5e.biglobe.ne.jp/~sofia/" target="_blank">http://www5e.biglobe.ne.jp/~sofia/</a></span></dd>
</dl>
</div>
<div id="map">
<h3>地図</h3>
<p> <iframe width="450" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.co.jp/maps?f=q&amp;source=s_q&amp;hl=ja&amp;geocode=&amp;q=%E3%82%BD%E3%83%95%E3%82%A3%E3%82%A2%E6%AD%AF%E7%A7%91%E3%82%AF%E3%83%AA%E3%83%8B%E3%83%83%E3%82%AF+&amp;sll=35.431878,139.558091&amp;sspn=0.009336,0.013797&amp;gl=jp&amp;g=%E7%A5%9E%E5%A5%88%E5%B7%9D%E7%9C%8C%E6%A8%AA%E6%B5%9C%E5%B8%82%E6%88%B8%E5%A1%9A%E5%8C%BA%E5%93%81%E6%BF%83%E7%94%BA%EF%BC%95%EF%BC%94%EF%BC%98%E2%88%92%EF%BC%92&amp;brcurrent=3,0x60185a4706f3270f:0x45c216041e859437,0&amp;ie=UTF8&amp;hq=%E3%82%BD%E3%83%95%E3%82%A3%E3%82%A2%E6%AD%AF%E7%A7%91%E3%82%AF%E3%83%AA%E3%83%8B%E3%83%83%E3%82%AF&amp;hnear=%E3%80%92244-0801+%E7%A5%9E%E5%A5%88%E5%B7%9D%E7%9C%8C%E6%A8%AA%E6%B5%9C%E5%B8%82%E6%88%B8%E5%A1%9A%E5%8C%BA%E5%93%81%E6%BF%83%E7%94%BA%EF%BC%95%EF%BC%94%EF%BC%98%E2%88%92%EF%BC%92&amp;cid=15154393556797232195&amp;ll=35.433365,139.558833&amp;spn=0.006119,0.009656&amp;z=16&amp;iwloc=A&amp;output=embed"></iframe><br /><small><a href="http://maps.google.co.jp/maps?f=q&amp;source=embed&amp;hl=ja&amp;geocode=&amp;q=%E3%82%BD%E3%83%95%E3%82%A3%E3%82%A2%E6%AD%AF%E7%A7%91%E3%82%AF%E3%83%AA%E3%83%8B%E3%83%83%E3%82%AF+&amp;sll=35.431878,139.558091&amp;sspn=0.009336,0.013797&amp;gl=jp&amp;g=%E7%A5%9E%E5%A5%88%E5%B7%9D%E7%9C%8C%E6%A8%AA%E6%B5%9C%E5%B8%82%E6%88%B8%E5%A1%9A%E5%8C%BA%E5%93%81%E6%BF%83%E7%94%BA%EF%BC%95%EF%BC%94%EF%BC%98%E2%88%92%EF%BC%92&amp;brcurrent=3,0x60185a4706f3270f:0x45c216041e859437,0&amp;ie=UTF8&amp;hq=%E3%82%BD%E3%83%95%E3%82%A3%E3%82%A2%E6%AD%AF%E7%A7%91%E3%82%AF%E3%83%AA%E3%83%8B%E3%83%83%E3%82%AF&amp;hnear=%E3%80%92244-0801+%E7%A5%9E%E5%A5%88%E5%B7%9D%E7%9C%8C%E6%A8%AA%E6%B5%9C%E5%B8%82%E6%88%B8%E5%A1%9A%E5%8C%BA%E5%93%81%E6%BF%83%E7%94%BA%EF%BC%95%EF%BC%94%EF%BC%98%E2%88%92%EF%BC%92&amp;cid=15154393556797232195&amp;ll=35.433365,139.558833&amp;spn=0.006119,0.009656&amp;z=16&amp;iwloc=A" style="color:#0000FF;text-align:left">大きな地図で見る</a></small> </p>
</div>
<div id="access">
<h3>交通案内</h3>
<p> 東戸塚駅改札口を出て左へ進み１Ｆに降りて、<br />
 西武を正面に見て左へ行っていただき、<br />
 デニーズとガストの前を通り過ぎると湘南薬局があります。<br />
 そのビルの４Ｆです。 </p>
</div>
</div>
]]>
        
    </content>
</entry>

<entry>
    <title>まつい歯科クリニック（群馬県高崎市）高崎駅</title>
    <link rel="alternate" type="text/html" href="http://wom-tv.com/dental/0170203.php" />
    <id>tag:wom-tv.com,2010:/dental//12.17487</id>

    <published>2010-03-15T02:05:40Z</published>
    <updated>2010-03-15T02:27:14Z</updated>

    <summary>高崎市の歯科医院 まつい歯科クリニック。高崎駅から徒歩5分で、ホワイトニングやインプラントがオススメ。</summary>
    <author>
        <name>稲見春樹</name>
        
    </author>
    
        <category term="10群馬県" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="稲見春樹" label="稲見春樹" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="群馬県" label="群馬県" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="群馬県高崎市" label="群馬県高崎市" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="高崎駅" label="高崎駅" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="ja" xml:base="http://wom-tv.com/dental/">
        <![CDATA[<div class="informationpage">
<div class="pageimage">
<p><img src="http://wom-tv.org/info/4304.jpg" alt="内外観写真" /></p>
</div>
<div class="description">
<p>高崎市の歯科医院 まつい歯科クリニック。高崎駅から徒歩5分で、ホワイトニングやインプラントがオススメ。</p>
</div>
<div class="attribute">
<dl class="atttop">
<dt>店舗名</dt>
<dd> まつい歯科クリニック </dd>
</dl>
<dl>
<dt>住所</dt>
<dd> 群馬県高崎市旭町113-7 ハトスクエア長建2F <br />
<a href="#map" title="地図・交通案内を見る">地図・交通案内を見る</a></dd>
</dl>
<dl>
<dt>アクセス</dt>
<dd> JR高崎駅 徒歩5分 </dd>
</dl>
<dl>
<dt>電話番号</dt>
<dd> 027-330-4618 </dd>
</dl>
<dl>
<dt>受付時間</dt>
<dd> 10:00～14:00 / 16:00～21:00 </dd>
</dl>
<dl>
<dt>定休日</dt>
<dd>日曜、祝祭日、木曜の午前診療 </dd>
</dl>
<dl>
<dt>カード</dt>
<dd> VISA Master JCB </dd>
</dl>
<dl>
<dt>メニュー</dt>
<dd> 一般歯科、小児歯科、口腔外科、矯正歯科 </dd>
</dl>
<dl>
<dt>設備</dt>
<dd> 駐車場、個室、キッズコーナー、レーザー </dd>
</dl>
<dl>
<dt>ホームページ</dt>
<dd><span class="hp"><a href="http://www.my-doctor.tv/dr/matsui-shika/index.html" target="_blank">http://www.my-doctor.tv/dr/matsui-shika/index.html</a></span></dd>
</dl>
</div>
<div id="map">
<h3>地図</h3>
<p> <iframe width="450" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.co.jp/maps?f=q&amp;source=s_q&amp;hl=ja&amp;geocode=&amp;q=%E3%81%BE%E3%81%A4%E3%81%84%E6%AD%AF%E7%A7%91%E3%82%AF%E3%83%AA%E3%83%8B%E3%83%83%E3%82%AF&amp;sll=36.326381,139.011437&amp;sspn=0.009232,0.013797&amp;g=%E9%AB%98%E5%B4%8E%E5%B8%82%E6%97%AD%E7%94%BA113-7&amp;brcurrent=3,0x601e889b70261815:0xed6a8c78b096bf51,0&amp;ie=UTF8&amp;hq=%E3%81%BE%E3%81%A4%E3%81%84%E6%AD%AF%E7%A7%91%E3%82%AF%E3%83%AA%E3%83%8B%E3%83%83%E3%82%AF&amp;hnear=%E3%80%92370-0046+%E7%BE%A4%E9%A6%AC%E7%9C%8C%E9%AB%98%E5%B4%8E%E5%B8%82%E6%97%AD%E7%94%BA%EF%BC%91%EF%BC%91%EF%BC%93%E2%88%92%EF%BC%97&amp;cid=10193350378617149205&amp;ll=36.332482,139.010611&amp;spn=0.024201,0.038624&amp;z=14&amp;iwloc=A&amp;output=embed"></iframe><br /><small><a href="http://maps.google.co.jp/maps?f=q&amp;source=embed&amp;hl=ja&amp;geocode=&amp;q=%E3%81%BE%E3%81%A4%E3%81%84%E6%AD%AF%E7%A7%91%E3%82%AF%E3%83%AA%E3%83%8B%E3%83%83%E3%82%AF&amp;sll=36.326381,139.011437&amp;sspn=0.009232,0.013797&amp;g=%E9%AB%98%E5%B4%8E%E5%B8%82%E6%97%AD%E7%94%BA113-7&amp;brcurrent=3,0x601e889b70261815:0xed6a8c78b096bf51,0&amp;ie=UTF8&amp;hq=%E3%81%BE%E3%81%A4%E3%81%84%E6%AD%AF%E7%A7%91%E3%82%AF%E3%83%AA%E3%83%8B%E3%83%83%E3%82%AF&amp;hnear=%E3%80%92370-0046+%E7%BE%A4%E9%A6%AC%E7%9C%8C%E9%AB%98%E5%B4%8E%E5%B8%82%E6%97%AD%E7%94%BA%EF%BC%91%EF%BC%91%EF%BC%93%E2%88%92%EF%BC%97&amp;cid=10193350378617149205&amp;ll=36.332482,139.010611&amp;spn=0.024201,0.038624&amp;z=14&amp;iwloc=A" style="color:#0000FF;text-align:left">大きな地図で見る</a></small> </p>
</div>
<div id="access">
<h3>交通案内</h3>
<p> 高崎駅西口より、高島屋方面に向かい、<br />
 高島屋とタワーレコード（ギャップ）の間の交差点を北に向かって進み、<br />
 次の交差点ところのマンション（メディカルモール）の２階 </p>
</div>
</div>]]>
        
    </content>
</entry>

<entry>
    <title>【審美・歯科医院】宮本歯科（中央区銀座）銀座</title>
    <link rel="alternate" type="text/html" href="http://wom-tv.com/dental/0070247.php" />
    <id>tag:wom-tv.com,2010:/dental//12.17435</id>

    <published>2010-03-04T17:03:12Z</published>
    <updated>2010-03-04T17:12:37Z</updated>

    <summary>東京都中央区の歯科医院 宮本歯科。銀座駅より徒歩1分で、歯周病治療、インプラントがオススメ。</summary>
    <author>
        <name>高橋尚大</name>
        
    </author>
    
        <category term="13東京都" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="0070247" label="0070247" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="岡本大助" label="岡本大助" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="東京都" label="東京都" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="東京都中央区" label="東京都中央区" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="ja" xml:base="http://wom-tv.com/dental/">
        <![CDATA[<div class="informationpage">
<div class="pageimage">
<p><img src="http://wom-tv.org/info/3992.jpg" alt="内外観写真" /></p>
</div>
<div class="description">
<p>東京都中央区の歯科医院 宮本歯科。銀座駅より徒歩1分で、歯周病治療、インプラントがオススメ。</p>
</div>
<div class="attribute">
<dl class="atttop">
<dt>店舗名</dt>
<dd> 宮本歯科 </dd>
</dl>
<dl>
<dt>住所</dt>
<dd> 東京都中央区銀座3-2-12 全研ビル3F<br />
<a href="#map" title="地図・交通案内を見る">地図・交通案内を見る</a></dd>
</dl>
<dl>
<dt>アクセス</dt>
<dd> 地下鉄 銀座線 銀座駅 C8出口 徒歩1分 </dd>
</dl>
<dl>
<dt>電話番号</dt>
<dd> 03-5250-7282 </dd>
</dl>
<dl>
<dt>受付時間</dt>
<dd> 10：00～13：00/14：30～19：00 </dd>
</dl>
<dl>
<dt>定休日</dt>
<dd> 土、日、祝 </dd>
</dl>
<dl>
<dt>カード</dt>
<dd> 未対応 </dd>
</dl>
<dl>
<dt>メニュー</dt>
<dd> 歯周病治療/知覚過敏/かみ合わせ/歯ぎしり/口腔外科/予防歯科/審美歯科/ホワイトニング/セラミックインレー/セラミッククラウン/メタルボンドクラウン/インプラント//ラミネートベニア/歯肉整形/歯茎のﾎﾜｲﾄﾆﾝｸﾞ(ﾋﾟｰﾘﾝｸﾞ)/バネのない入れ歯 </dd>
</dl>
<dl>
<dt>設備</dt>
<dd> 無料カウンセリング/無痛治療/パウダールーム/個室診療室 </dd>
</dl>
<dl>
<dt>ホームページ</dt>
<dd><span class="hp"><a href="http://www.miyamotodental.com/" target="_blank">http://www.miyamotodental.com/</a></span></dd>
</dl>

</div>

<div id="map">
<h3>地図</h3>
<p> <iframe width="450" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.co.jp/maps?f=q&amp;hl=ja&amp;geocode=&amp;q=%E5%AE%AE%E6%9C%AC%E6%AD%AF%E7%A7%91&amp;sll=35.673875,139.764719&amp;sspn=0.007914,0.011737&amp;ie=UTF8&amp;cid=35673007,139764786,14160792946726005363&amp;s=AARTsJq5A32pf-_YOZTyS5hmqbzKaZiNXQ&amp;ll=35.682607,139.769011&amp;spn=0.024401,0.038624&amp;z=14&amp;iwloc=A&amp;output=embed"></iframe><br /><small><a href="http://maps.google.co.jp/maps?f=q&amp;hl=ja&amp;geocode=&amp;q=%E5%AE%AE%E6%9C%AC%E6%AD%AF%E7%A7%91&amp;sll=35.673875,139.764719&amp;sspn=0.007914,0.011737&amp;ie=UTF8&amp;cid=35673007,139764786,14160792946726005363&amp;ll=35.682607,139.769011&amp;spn=0.024401,0.038624&amp;z=14&amp;iwloc=A&amp;source=embed" style="color:#0000FF;text-align:left">大きな地図で見る</a></small>

 </p>
</div>
<div id="access">
<h3>交通案内</h3>
<p> 地下鉄　銀座線、丸ノ内線、日比谷線　銀座駅　C8出口　徒歩1分<br/>
地下鉄　有楽町線　銀座一丁目駅　5番出口　徒歩3分<br/>
JR各線有楽町駅　中央口　徒歩3分<br/>
 </p>
</div>
</div>
]]>
        
    </content>
</entry>

<entry>
    <title>愛歯科医院（京都市中京区）烏丸</title>
    <link rel="alternate" type="text/html" href="http://wom-tv.com/dental/0220521.php" />
    <id>tag:wom-tv.com,2010:/dental//12.17423</id>

    <published>2010-03-02T04:21:58Z</published>
    <updated>2010-03-02T04:23:33Z</updated>

    <summary>京都市中京区の歯科医院 愛歯科医院。阪急京都線烏丸駅から徒歩7分で、ほんだ式口臭外来が評判。</summary>
    <author>
        <name>渡邉源太郎</name>
        
    </author>
    
        <category term="26京都府" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="京都府" label="京都府" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="京都府京都市" label="京都府京都市" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="渡邉源太郎" label="渡邉源太郎" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="烏丸駅" label="烏丸駅" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="ja" xml:base="http://wom-tv.com/dental/">
        <![CDATA[<div class="informationpage">
<div class="pageimage">
<p><img src="http://wom-tv.org/info/3954.jpg" alt="内外観写真" /></p>
</div>
<div class="description">
<p>京都市中京区の歯科医院 愛歯科医院。阪急京都線烏丸駅から徒歩7分で、ほんだ式口臭外来が評判。</p>
</div>



<div class="attribute">
<dl class="atttop">
<dt>店舗名</dt>
<dd> 愛歯科医院 </dd>
</dl>
<dl>
<dt>住所</dt>
<dd> 京都市中京区西洞院通錦小路上ル古西町436興和ｾﾝﾄﾗﾙﾋﾞﾙ1階 <br />
<a href="#map" title="地図・交通案内を見る">地図・交通案内を見る</a></dd>
</dl>
<dl>
<dt>アクセス</dt>
<dd> 市営地下鉄四条駅・阪急京都線烏丸駅から徒歩7分 </dd>
</dl>
<dl>
<dt>電話番号</dt>
<dd> 0120-768-118 </dd>
</dl>
<dl>
<dt>受付時間</dt>
<dd> 月～金　10：00～13：30/14：30～19：00<br />
土　9：30～13：30/14：30～17：30 </dd>
</dl>
<dl>
<dt>定休日</dt>
<dd> 日曜・祝日 </dd>
</dl>
<dl>
<dt>カード</dt>
<dd> VISA Master JCB Diners AMEX </dd>
</dl>
<dl>
<dt>メニュー</dt>
<dd> 一般歯科・小児歯科/矯正歯科・プチ矯正/ホワイトニング・審美歯科/<br />
ほんだ式口臭外来/インプラント </dd>
</dl>
<dl>
<dt>設備</dt>
<dd> 個室型診療室・相談室/提携駐車場の駐車券を交付 </dd>
</dl>
<dl>
<dt>ホームページ</dt>
<dd><span class="hp"><a href="http://www.ai-dent.net" target="_blank">http://www.ai-dent.net</a></span></dd>
</dl>
<dl>
<dt>ブログ</dt>
<dd><span class="blog"><a href="http://ai-dent.blog.so-net.ne.jp/" target="_blank">http://ai-dent.blog.so-net.ne.jp/</a></span></dd>
</dl>

</div>
<div class="infonew">
<div class="h3">
<h3>新着情報</h3>
</div>
<script type="text/javascript" src="http://www.google.com/jsapi?key=ABQIAAAAYc4d0BghdN25mdBcaAVRMBSwl1VFnqfIRIA0v-3T1orz17-6TxQ8Gi3-6z6O7DWgRw2K1lqzi6E-zA"></script>
<script type="text/javascript">
google.load("feeds", "1");
function initialize() {
var feedurl = "http://rss.rssad.jp/rss/sonetrss/000229888871_index.rdf";
var feed = new google.feeds.Feed(feedurl);
feed.setNumEntries(8);
feed.load(dispfeed);
function dispfeed(result){
if (!result.error){
var container = document.getElementById("feed");
var htmlstr = "";
htmlstr += "<ul>";
for (var i = 0; i < result.feed.entries.length; i++) {
var entry = result.feed.entries[i];
htmlstr += "<li>"
htmlstr += '<a href="' + entry.link + '" target="_blank">' + entry.title + '</a>';
htmlstr += "&nbsp;&nbsp;"
var strdate = createDateString(entry.publishedDate);
htmlstr += "(" + strdate + ")";
htmlstr += "</li>"
}
htmlstr += "</ul>";
 container.innerHTML = htmlstr;
}else{
 alert(result.error.code + ":" + result.error.message);
}
}
}
function createDateString(publishedDate){
var pdate = new Date(publishedDate);
var pday = pdate.getDate();
var pmonth = pdate.getMonth() + 1;
var pyear = pdate.getFullYear();
var strdate = pyear + "年" + pmonth + "月" + pday + "日";
return strdate;
}
google.setOnLoadCallback(initialize);
</script>
<div id="feed"></div>
</div>
<div id="map">
<h3>地図</h3>
<p> <iframe width="450" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.co.jp/maps?f=q&amp;source=s_q&amp;hl=ja&amp;geocode=&amp;q=%E4%BA%AC%E9%83%BD%E5%B8%82%E4%B8%AD%E4%BA%AC%E5%8C%BA%E5%8F%A4%E8%A5%BF%E7%94%BA436%E3%80%80%E6%84%9B%E6%AD%AF%E7%A7%91&amp;sll=35.005657,135.754838&amp;sspn=0.006819,0.01384&amp;g=%E4%BA%AC%E9%83%BD%E5%B8%82%E4%B8%AD%E4%BA%AC%E5%8C%BA%E5%8F%A4%E8%A5%BF%E7%94%BA436&amp;brcurrent=3,0x6001062b6f570db9:0x408c4afef6d460fd,0&amp;ie=UTF8&amp;hq=%E6%84%9B%E6%AD%AF%E7%A7%91&amp;hnear=%E4%BA%AC%E9%83%BD%E5%BA%9C%E4%BA%AC%E9%83%BD%E5%B8%82%E4%B8%AD%E4%BA%AC%E5%8C%BA%E5%8F%A4%E8%A5%BF%E7%94%BA%EF%BC%94%EF%BC%93%EF%BC%96&amp;cid=8913595624705282066&amp;ll=35.016009,135.759172&amp;spn=0.024603,0.038624&amp;z=14&amp;iwloc=A&amp;output=embed"></iframe><br /><small><a href="http://maps.google.co.jp/maps?f=q&amp;source=embed&amp;hl=ja&amp;geocode=&amp;q=%E4%BA%AC%E9%83%BD%E5%B8%82%E4%B8%AD%E4%BA%AC%E5%8C%BA%E5%8F%A4%E8%A5%BF%E7%94%BA436%E3%80%80%E6%84%9B%E6%AD%AF%E7%A7%91&amp;sll=35.005657,135.754838&amp;sspn=0.006819,0.01384&amp;g=%E4%BA%AC%E9%83%BD%E5%B8%82%E4%B8%AD%E4%BA%AC%E5%8C%BA%E5%8F%A4%E8%A5%BF%E7%94%BA436&amp;brcurrent=3,0x6001062b6f570db9:0x408c4afef6d460fd,0&amp;ie=UTF8&amp;hq=%E6%84%9B%E6%AD%AF%E7%A7%91&amp;hnear=%E4%BA%AC%E9%83%BD%E5%BA%9C%E4%BA%AC%E9%83%BD%E5%B8%82%E4%B8%AD%E4%BA%AC%E5%8C%BA%E5%8F%A4%E8%A5%BF%E7%94%BA%EF%BC%94%EF%BC%93%EF%BC%96&amp;cid=8913595624705282066&amp;ll=35.016009,135.759172&amp;spn=0.024603,0.038624&amp;z=14&amp;iwloc=A" style="color:#0000FF;text-align:left">大きな地図で見る</a></small> </p>
</div>
<div id="access">
<h3>交通案内</h3>
<p> 四条烏丸から西へ進んでいただき、西洞院通まで。<br />
西洞院通を上がって錦小路を越えて、西側にございます。 </p>
</div>
</div>
]]>
        
    </content>
</entry>

<entry>
    <title>ファースト歯科医院（埼玉県川越市）川越駅</title>
    <link rel="alternate" type="text/html" href="http://wom-tv.com/dental/0230371.php" />
    <id>tag:wom-tv.com,2010:/dental//12.17415</id>

    <published>2010-03-01T08:05:45Z</published>
    <updated>2010-03-02T07:53:12Z</updated>

    <summary>埼玉県川越市の歯科医院 ファースト歯科医院。川越駅より徒歩10分で、ホワイトニングがオススメ。</summary>
    <author>
        <name>後藤梨衣</name>
        
    </author>
    
        <category term="11埼玉県" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="埼玉県" label="埼玉県" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="埼玉県川越市" label="埼玉県川越市" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="川越駅" label="川越駅" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="後藤梨衣" label="後藤梨衣" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="ja" xml:base="http://wom-tv.com/dental/">
        <![CDATA[<div class="informationpage">
<div class="pageimage">
<p><img src="http://wom-tv.org/info/3897.jpg" alt="内外観写真" /></p>
</div>
<div class="description">
<p>埼玉県川越市の歯科医院 ファースト歯科医院。川越駅より徒歩10分で、歯周病治療、インプラントがオススメ。</p>
</div>
<div class="attribute">
<dl class="atttop">
<dt>店舗名</dt>
<dd> ファースト歯科医院 </dd>
</dl>
<dl>
<dt>住所</dt>
<dd> 埼玉県川越市野田町2-4-24 <br />
<a href="#map" title="地図・交通案内を見る">地図・交通案内を見る</a></dd>
</dl>
<dl>
<dt>アクセス</dt>
<dd> 東武東上線・JR線川越駅より徒歩10分 </dd>
</dl>
<dl>
<dt>電話番号</dt>
<dd> 049-246-3437 </dd>
</dl>
<dl>
<dt>受付時間</dt>
<dd> 月･水 9:30～12:00 / 14:30～19:00<br />
火･金 9:30～12:00 / 14:30～20:00 <br />
土 9:30～12:00 / 14:30～17:00 
</dd>
</dl>
<dl>
<dt>定休日</dt>
<dd> 日・木・祝日 </dd>
</dl>
<dl>
<dt>カード</dt>
<dd> VISA、Master、JCB、Diners、AMEX（自費診療の場合のみ） </dd>
</dl>
<dl>
<dt>メニュー</dt>
<dd> インプラント/歯周治療/矯正治療/ホワイトニング/虫歯治療/メインテナンス
 </dd>
</dl>
<dl>
<dt>設備</dt>
<dd> 駐車場6台 </dd>
</dl>
<dl>
<dt>ホームページ</dt>
<dd><span class="hp"><a href="http://www.first-shika.com" target="_blank">http://www.first-shika.com</a></span></dd>
</dl>
<!--<dl>
<dt>ブログ</dt>
<dd><span class="blog"><a href="【店舗（院）のブログURLを入力】" target="_blank">【店舗（院）のブログURLを入力】</a></span></dd>
</dl>
<dl class="attbottom">
<dt>携帯サイト</dt>
<dd><span class="blog"><a href="【店舗（院）の携帯サイトURLを入力】" target="_blank">【店舗（院）の携帯サイトURLを入力】</a></span></dd>
</dl>-->
</div>
<!--<div class="infonew">
<div class="h3">
<h3>新着情報</h3>
</div>
<script type="text/javascript" src="http://www.google.com/jsapi?key=ABQIAAAAYc4d0BghdN25mdBcaAVRMBSwl1VFnqfIRIA0v-3T1orz17-6TxQ8Gi3-6z6O7DWgRw2K1lqzi6E-zA"></script>
<script type="text/javascript">
google.load("feeds", "1");
function initialize() {
var feedurl = "【 mydomain.com 】";
var feed = new google.feeds.Feed(feedurl);
feed.setNumEntries(8);
feed.load(dispfeed);
function dispfeed(result){
if (!result.error){
var container = document.getElementById("feed");
var htmlstr = "";
htmlstr += "<ul>";
for (var i = 0; i < result.feed.entries.length; i++) {
var entry = result.feed.entries[i];
htmlstr += "<li>"
htmlstr += '<a href="' + entry.link + '" target="_blank">' + entry.title + '</a>';
htmlstr += "&nbsp;&nbsp;"
var strdate = createDateString(entry.publishedDate);
htmlstr += "(" + strdate + ")";
htmlstr += "</li>"
}
htmlstr += "</ul>";
 container.innerHTML = htmlstr;
}else{
 alert(result.error.code + ":" + result.error.message);
}
}
}
function createDateString(publishedDate){
var pdate = new Date(publishedDate);
var pday = pdate.getDate();
var pmonth = pdate.getMonth() + 1;
var pyear = pdate.getFullYear();
var strdate = pyear + "年" + pmonth + "月" + pday + "日";
return strdate;
}
google.setOnLoadCallback(initialize);
</script>
<div id="feed"></div>
</div>-->
<div id="map">
<h3>地図</h3>
<p> <iframe width="450" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.co.jp/maps?f=q&amp;source=s_q&amp;hl=ja&amp;geocode=&amp;q=%E5%9F%BC%E7%8E%89%E7%9C%8C%E5%B7%9D%E8%B6%8A%E5%B8%82%E9%87%8E%E7%94%B0%E7%94%BA2-4-24%E3%80%80%E3%83%95%E3%82%A1%E3%83%BC%E3%82%B9%E3%83%88%E6%AD%AF%E7%A7%91&amp;sll=35.906339,139.470923&amp;sspn=0.008064,0.014956&amp;g=%E5%9F%BC%E7%8E%89%E7%9C%8C%E5%B7%9D%E8%B6%8A%E5%B8%82%E9%87%8E%E7%94%B0%E7%94%BA2-4-24&amp;brcurrent=3,0x6018da4661c63519:0xbe1b7b69e093dcd,0&amp;ie=UTF8&amp;hq=%E3%83%95%E3%82%A1%E3%83%BC%E3%82%B9%E3%83%88%E6%AD%AF%E7%A7%91&amp;hnear=%E5%9F%BC%E7%8E%89%E7%9C%8C%E5%B7%9D%E8%B6%8A%E5%B8%82%E9%87%8E%E7%94%B0%E7%94%BA%EF%BC%92%E4%B8%81%E7%9B%AE%EF%BC%94%E2%88%92%EF%BC%92%EF%BC%94&amp;cid=11197222991193088508&amp;ll=35.915747,139.475126&amp;spn=0.024329,0.038624&amp;z=14&amp;iwloc=A&amp;output=embed"></iframe><br /><small><a href="http://maps.google.co.jp/maps?f=q&amp;source=embed&amp;hl=ja&amp;geocode=&amp;q=%E5%9F%BC%E7%8E%89%E7%9C%8C%E5%B7%9D%E8%B6%8A%E5%B8%82%E9%87%8E%E7%94%B0%E7%94%BA2-4-24%E3%80%80%E3%83%95%E3%82%A1%E3%83%BC%E3%82%B9%E3%83%88%E6%AD%AF%E7%A7%91&amp;sll=35.906339,139.470923&amp;sspn=0.008064,0.014956&amp;g=%E5%9F%BC%E7%8E%89%E7%9C%8C%E5%B7%9D%E8%B6%8A%E5%B8%82%E9%87%8E%E7%94%B0%E7%94%BA2-4-24&amp;brcurrent=3,0x6018da4661c63519:0xbe1b7b69e093dcd,0&amp;ie=UTF8&amp;hq=%E3%83%95%E3%82%A1%E3%83%BC%E3%82%B9%E3%83%88%E6%AD%AF%E7%A7%91&amp;hnear=%E5%9F%BC%E7%8E%89%E7%9C%8C%E5%B7%9D%E8%B6%8A%E5%B8%82%E9%87%8E%E7%94%B0%E7%94%BA%EF%BC%92%E4%B8%81%E7%9B%AE%EF%BC%94%E2%88%92%EF%BC%92%EF%BC%94&amp;cid=11197222991193088508&amp;ll=35.915747,139.475126&amp;spn=0.024329,0.038624&amp;z=14&amp;iwloc=A" style="color:#0000FF;text-align:left">大きな地図で見る</a></small> </p>
</div>
<div id="access">
<h3>交通案内</h3>
<p> 川越駅西口より右へ、１つ目の信号を左折、約１Km先の３つ目の信号を超えて通りの左側にあります。 </p>
</div>
</div>
]]>
        
    </content>
</entry>

<entry>
    <title>長尾歯科医院（岐阜県関市）大田</title>
    <link rel="alternate" type="text/html" href="http://wom-tv.com/dental/0050061.php" />
    <id>tag:wom-tv.com,2010:/dental//12.17409</id>

    <published>2010-02-28T15:00:21Z</published>
    <updated>2010-02-28T15:06:50Z</updated>

    <summary>岐阜県関市の歯科医院 長尾歯科医院。JR線大田駅より車で30分。トレーを使わない新しいホワイトニングが評判。</summary>
    <author>
        <name>渡邉源太郎</name>
        
    </author>
    
        <category term="21岐阜県" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="中村修造" label="中村修造" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="大田駅" label="大田駅" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="岐阜県" label="岐阜県" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="岐阜県関市" label="岐阜県関市" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="ja" xml:base="http://wom-tv.com/dental/">
        <![CDATA[<div class="informationpage">
<div class="pageimage">
<p><img src="http://wom-tv.org/info/3880.jpg" alt="内外観写真" /></p>
</div>
<div class="description">
<p>岐阜県関市の歯科医院 長尾歯科医院。JR線大田駅より車で30分。トレーを使わない新しいホワイトニングが評判。</p>
</div>
<div class="attribute">
<dl class="atttop">
<dt>店舗名</dt>
<dd> 長尾歯科医院</dd>
</dl>
<dl>
<dt>住所</dt>
<dd> 岐阜県関市下之保2356-10 <br />
<a href="#map" title="地図・交通案内を見る">地図・交通案内を見る</a></dd>
</dl>
<dl>
<dt>アクセス</dt>
<dd> JR線大田駅より車で30分。岐阜バス大門停留所0分</dd>
</dl>
<dl>
<dt>電話番号</dt>
<dd> 0575-49-2100 </dd>
</dl>
<dl>
<dt>受付時間</dt>
<dd> 9：00～12：00/14：30～18：30</dd>
</dl>
<dl>
<dt>定休日</dt>
<dd> 木、日、祝 </dd>
</dl>
<dl>
<dt>カード</dt>
<dd> 各種クレジット </dd>
</dl>
<dl>
<dt>メニュー</dt>
<dd> 歯周病治療/知覚過敏/口臭治療/顎関節症/かみ合わせ/歯ぎしり/口腔乾燥症/口腔外科/予防歯科/矯正歯科/審美歯科/小児歯科/ホワイトニング/セラミックインレー/セラミッククラウン/メタルボンドクラウン/インプラント/ラミネートベニア/歯肉整形/歯列矯正/歯茎のﾎﾜｲﾄﾆﾝｸﾞ(ﾋﾟｰﾘﾝｸﾞ)/バネのない入れ歯/</dd>
</dl>
<dl>
<dt>設備</dt>
<dd> 保険適用/バリヤフリー/訪問歯科診療/駐車場/無料カウンセリング/個室診療室 </dd>
</dl>
<dl>
<dt>ホームページ</dt>
<dd><span class="hp"><a href="http://www.nagao-dc.com/index.html" target="_blank">http://www.nagao-dc.com/index.html</a></span></dd>
</dl>

</div>
<div id="map">
<h3>地図</h3>
<p> <iframe width="450" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.co.jp/maps?f=q&amp;hl=ja&amp;geocode=&amp;q=%E9%95%B7%E5%B0%BE%E6%AD%AF%E7%A7%91%E5%8C%BB%E9%99%A2%E3%80%80&amp;sll=35.559026,137.000284&amp;sspn=0.008466,0.014999&amp;ie=UTF8&amp;ll=35.56812,137.00449&amp;spn=0.008466,0.014999&amp;z=14&amp;iwloc=A&amp;cid=35558479,137000290,16756316332060637160&amp;output=embed&amp;s=AARTsJqQX34nBmcsivgdNE_KPMy8RvN5VQ"></iframe><br /><small><a href="http://maps.google.co.jp/maps?f=q&amp;hl=ja&amp;geocode=&amp;q=%E9%95%B7%E5%B0%BE%E6%AD%AF%E7%A7%91%E5%8C%BB%E9%99%A2%E3%80%80&amp;sll=35.559026,137.000284&amp;sspn=0.008466,0.014999&amp;ie=UTF8&amp;ll=35.56812,137.00449&amp;spn=0.008466,0.014999&amp;z=14&amp;iwloc=A&amp;cid=35558479,137000290,16756316332060637160&amp;source=embed" style="color:#0000FF;text-align:left">大きな地図で見る</a></small>
 </p>
</div>
<div id="access">
<h3>交通案内</h3>
<p> 岐阜バス　大門停留所　0分<br />
JR線　大田駅　車で30分<br />
名鉄線　新鵜沼駅　車で30分</p>
</div>
</div>
]]>
        
    </content>
</entry>

<entry>
    <title>新井デンタルクリニック（東京都目黒区）中目黒</title>
    <link rel="alternate" type="text/html" href="http://wom-tv.com/dental/0100058.php" />
    <id>tag:wom-tv.com,2010:/dental//12.17392</id>

    <published>2010-02-28T13:40:44Z</published>
    <updated>2010-02-28T13:42:41Z</updated>

    <summary>目黒区上目黒の歯科医院 新井デンタルクリニック。東横線中目黒駅から徒歩5分で、徹底したプライベートケアが評判。</summary>
    <author>
        <name>渡邉源太郎</name>
        
    </author>
    
        <category term="13東京都" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="中村修造" label="中村修造" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="中目黒駅" label="中目黒駅" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="東京都" label="東京都" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="東京都目黒区" label="東京都目黒区" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="ja" xml:base="http://wom-tv.com/dental/">
        <![CDATA[<div class="informationpage">
<div class="pageimage">
<p><img src="http://wom-tv.org/info/3865.jpg" alt="内外観写真" /></p>
</div>
<div class="description">
<p>目黒区上目黒の歯科医院 新井デンタルクリニック。東横線中目黒駅から徒歩5分で、徹底したプライベートケアが評判。</p>
</div>
<div class="attribute">
<dl class="atttop">
<dt>店舗名</dt>
<dd> 新井デンタルクリニック</dd>
</dl>
<dl>
<dt>住所</dt>
<dd> 東京都目黒区上目黒3-16-13 1F <br />
<a href="#map" title="地図・交通案内を見る">地図・交通案内を見る</a></dd>
</dl>
<dl>
<dt>アクセス</dt>
<dd> 東横線中目黒駅徒歩5分 </dd>
</dl>
<dl>
<dt>電話番号</dt>
<dd> 03-5773-0204 </dd>
</dl>
<dl>
<dt>受付時間</dt>
<dd> 【月火水金】10:00～13:00 / 14:30～20:00<br />
【土曜日】10:00～13:00 / 14:30～17:00</dd>
</dl>
<dl>
<dt>定休日</dt>
<dd> 木曜日、日祝祭日 </dd>
</dl>
<dl>
<dt>カード</dt>
<dd> 各種クレジット </dd>
</dl>
<dl>
<dt>メニュー</dt>
<dd> 歯周病治療/知覚過敏/口臭治療/顎関節症/かみ合わせ/歯ぎしり/口腔乾燥症/口腔外科/予防歯科/矯正歯科/審美歯科/小児歯科/ホワイトニング/セラミックインレー/セラミッククラウン/メタルボンドクラウン/インプラント/ラミネートベニア/歯肉整形/歯列矯正/歯茎のﾎﾜｲﾄﾆﾝｸﾞ(ﾋﾟｰﾘﾝｸﾞ)/バネのない入れ歯/その他(レーザー治療)</dd>
</dl>
<dl>
<dt>設備</dt>
<dd> 保険適用/無痛治療/英語対応/無料カウンセリング/パウダールーム/個室診療室 </dd>
</dl>
<dl>
<dt>ホームページ</dt>
<dd><span class="hp"><a href="http://www.arai-dental.info/" target="_blank">http://www.arai-dental.info/</a></span></dd>
</dl>

</div>
<div id="map">
<h3>地図</h3>
<p> <iframe width="450" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.co.jp/maps?f=q&amp;source=s_q&amp;hl=ja&amp;geocode=&amp;q=%E6%9D%B1%E4%BA%AC%E9%83%BD%E7%9B%AE%E9%BB%92%E5%8C%BA%E4%B8%8A%E7%9B%AE%E9%BB%923-16-13&amp;sll=36.5626,136.362305&amp;sspn=51.952982,111.357422&amp;brcurrent=3,0x60188b4c72d8e843:0xa175656f672855aa,0&amp;ie=UTF8&amp;hq=&amp;hnear=%E6%9D%B1%E4%BA%AC%E9%83%BD%E7%9B%AE%E9%BB%92%E5%8C%BA%E4%B8%8A%E7%9B%AE%E9%BB%92%EF%BC%93%E4%B8%81%E7%9B%AE%EF%BC%91%EF%BC%96%E2%88%92%EF%BC%91%EF%BC%93&amp;ll=35.645858,139.695561&amp;spn=0.006103,0.009656&amp;z=16&amp;iwloc=A&amp;output=embed"></iframe><br /><small><a href="http://maps.google.co.jp/maps?f=q&amp;source=embed&amp;hl=ja&amp;geocode=&amp;q=%E6%9D%B1%E4%BA%AC%E9%83%BD%E7%9B%AE%E9%BB%92%E5%8C%BA%E4%B8%8A%E7%9B%AE%E9%BB%923-16-13&amp;sll=36.5626,136.362305&amp;sspn=51.952982,111.357422&amp;brcurrent=3,0x60188b4c72d8e843:0xa175656f672855aa,0&amp;ie=UTF8&amp;hq=&amp;hnear=%E6%9D%B1%E4%BA%AC%E9%83%BD%E7%9B%AE%E9%BB%92%E5%8C%BA%E4%B8%8A%E7%9B%AE%E9%BB%92%EF%BC%93%E4%B8%81%E7%9B%AE%EF%BC%91%EF%BC%96%E2%88%92%EF%BC%91%EF%BC%93&amp;ll=35.645858,139.695561&amp;spn=0.006103,0.009656&amp;z=16&amp;iwloc=A" style="color:#0000FF;text-align:left">大きな地図で見る</a></small>
 </p>
</div>
<div id="access">
<h3>交通案内</h3>
<p> 東急東横線　中目黒駅　徒歩5分
日比谷線　　中目黒駅　徒歩5分</p>
</div>
</div>
]]>
        
    </content>
</entry>

<entry>
    <title>鶴舞歯科（名古屋市中区）鶴舞</title>
    <link rel="alternate" type="text/html" href="http://wom-tv.com/dental/0150118.php" />
    <id>tag:wom-tv.com,2010:/dental//12.17387</id>

    <published>2010-02-28T13:10:28Z</published>
    <updated>2010-02-28T13:22:10Z</updated>

    <summary>名古屋市中区の歯科医院 鶴舞歯科。鶴舞駅から徒歩2分、ホワイトニングがオススメ。</summary>
    <author>
        <name>中村修造</name>
        
    </author>
    
        <category term="23愛知県" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="中村修造" label="中村修造" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="愛知県" label="愛知県" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="愛知県名古屋市" label="愛知県名古屋市" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="鶴舞駅" label="鶴舞駅" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="ja" xml:base="http://wom-tv.com/dental/">
        <![CDATA[<div class="informationpage">
<div class="pageimage">
<p><img src="http://wom-tv.org/info/3845.jpg" alt="内外観写真" /></p>
</div>

<div class="description">
<p>名古屋市中区の歯科医院 鶴舞歯科。鶴舞駅から徒歩2分、ホワイトニングがオススメ。</p>
</div>

<div class="attribute">
<dl class="atttop">
<dt>店舗名</dt>
<dd> 鶴舞歯科 </dd>
</dl>
<dl>
<dt>住所</dt>
<dd> 愛知県名古屋市中区千代田5丁目20-10文岡ビル2階 <br />
<a href="#map" title="地図・交通案内を見る">地図・交通案内を見る</a></dd>
</dl>
<dl>
<dt>アクセス</dt>
<dd> JR線鶴舞駅　徒歩2分<br />
地下鉄　鶴舞駅　徒歩5分 </dd>
</dl>
<dl>
<dt>電話番号</dt>
<dd> 052-263-0112 </dd>
</dl>
<dl>
<dt>受付時間</dt>
<dd> 09:30～12:30  14:00～19:00 </dd>
</dl>
<dl>
<dt>定休日</dt>
<dd> 木曜日/日曜日/祝日 </dd>
</dl>
<dl>
<dt>カード</dt>
<dd> VISA、Master、JCB、AMEX、Diners </dd>
</dl>
<dl>
<dt>メニュー</dt>
<dd> ホワイトニング / クリーニング / セラミッククラウン / ラミネートべニア / 歯周病治療 / 顎関節症 / 知覚過敏 / 口腔乾燥症 / 口腔外科 / 小児歯科 / 口臭治療 / かみ合わせ / 予防歯科 / 審美歯科</dd>
</dl>
<dl>
<dt>設備</dt>
<dd>完全予約 / 無痛治療 / 英語対応 / 駐車場 / 訪問歯科診療 </dd>
</dl>
<dl>
<dt>ホームページ</dt>
<dd><span class="hp"><a href="http://www6.plala.or.jp/tsurum-dc/" target="_blank">http://www6.plala.or.jp/tsurum-dc/</a></span></dd>
</dl>
<dl>
<dt>ブログ</dt>
<dd><span class="blog"><a href="http://muchan.net/diary/cgi/dview.cgi?jacobs" target="_blank">http://muchan.net/diary/cgi/dview.cgi?jacobs</a></span></dd>
</dl>
</div>


<div id="map">
<h3>地図</h3>
<p> <iframe width="450" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.co.jp/maps?f=q&amp;hl=ja&amp;geocode=&amp;q=%E5%90%8D%E5%8F%A4%E5%B1%8B%E5%B8%82%E4%B8%AD%E5%8C%BA%E5%8D%83%E4%BB%A3%E7%94%B05%E4%B8%81%E7%9B%AE20-10%E6%96%87%E5%B2%A1%E3%83%93%E3%83%AB2%E9%9A%8E&amp;sll=35.147319,136.898189&amp;sspn=0.010562,0.019441&amp;ie=UTF8&amp;cid=35157927,136917365,14500160937318860748&amp;s=AARTsJqifmrpYp6MUcLbvMCjhPVfxiSsMA&amp;ll=35.168406,136.921577&amp;spn=0.024557,0.038624&amp;z=14&amp;iwloc=A&amp;output=embed"></iframe><br /><small><a href="http://maps.google.co.jp/maps?f=q&amp;hl=ja&amp;geocode=&amp;q=%E5%90%8D%E5%8F%A4%E5%B1%8B%E5%B8%82%E4%B8%AD%E5%8C%BA%E5%8D%83%E4%BB%A3%E7%94%B05%E4%B8%81%E7%9B%AE20-10%E6%96%87%E5%B2%A1%E3%83%93%E3%83%AB2%E9%9A%8E&amp;sll=35.147319,136.898189&amp;sspn=0.010562,0.019441&amp;ie=UTF8&amp;cid=35157927,136917365,14500160937318860748&amp;ll=35.168406,136.921577&amp;spn=0.024557,0.038624&amp;z=14&amp;iwloc=A&amp;source=embed" style="color:#0000FF;text-align:left">大きな地図で見る</a></small>
 </p>
</div>
<div id="access">
<h3>交通案内</h3>
<p> JR線鶴舞駅　徒歩2分<br />
地下鉄　鶴舞駅　徒歩5分 </p>
</div>
</div>
]]>
        
    </content>
</entry>

<entry>
    <title>タキノ歯科医院（京都市右京区）西京極</title>
    <link rel="alternate" type="text/html" href="http://wom-tv.com/dental/0150131.php" />
    <id>tag:wom-tv.com,2010:/dental//12.17384</id>

    <published>2010-02-28T12:53:42Z</published>
    <updated>2010-02-28T13:02:12Z</updated>

    <summary>京都市中京区の歯科医院 安田歯科医院。地下鉄東西線　京都市役所前駅　10番出口から徒歩1分で、インプラント治療が評判。</summary>
    <author>
        <name>渡邉源太郎</name>
        
    </author>
    
        <category term="26京都府" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="中村修造" label="中村修造" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="京都府" label="京都府" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="京都府京都市" label="京都府京都市" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="西京極駅" label="西京極駅" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="ja" xml:base="http://wom-tv.com/dental/">
        <![CDATA[<div class="informationpage">
<div class="pageimage">
<p><img src="http://wom-tv.org/info/3778.jpg" alt="内外観写真" /></p>
</div>
<div class="description">
<p>京都市中京区の歯科医院 安田歯科医院。地下鉄東西線　京都市役所前駅　10番出口から徒歩1分で、無痛治療が評判。</p>
</div>
<div class="attribute">
<dl class="atttop">
<dt>店舗名</dt>
<dd> タキノ歯科医院</dd>
</dl>
<dl>
<dt>住所</dt>
<dd> 京都市右京区西京極佃田町20　森川ビル2階 <br />
<a href="#map" title="地図・交通案内を見る">地図・交通案内を見る</a></dd>
</dl>
<dl>
<dt>アクセス</dt>
<dd> 地下鉄東西線　京都市役所前駅　10番出口から 徒歩1分 </dd>
</dl>
<dl>
<dt>電話番号</dt>
<dd> 075-322-6333 </dd>
</dl>
<dl>
<dt>受付時間</dt>
<dd> 平日 9:30～13:00／15:00～19:30<br />
土曜日 9:30～13:00</dd>
</dl>
<dl>
<dt>定休日</dt>
<dd> 日曜日、祝日 </dd>
</dl>
<dl>
<dt>カード</dt>
<dd> 各種クレジット </dd>
</dl>
<dl>
<dt>メニュー</dt>
<dd> 歯周病治療/知覚過敏/口臭治療/顎関節症/かみ合わせ/歯ぎしり/口腔外科/予防歯科/矯正歯科/審美歯科/ホワイトニング/セラミックインレー/セラミッククラウン/メタルボンドクラウン/インプラント/ラミネートベニア/歯肉整形/歯列矯正/歯茎のﾎﾜｲﾄﾆﾝｸﾞ(ﾋﾟｰﾘﾝｸﾞ)/バネのない入れ歯</dd>
</dl>
<dl>
<dt>設備</dt>
<dd> 無痛治療/駐車場/個室診療室/無料カウンセリング </dd>
</dl>
<dl>
<dt>ホームページ</dt>
<dd><span class="hp"><a href="http://www.takino-d.com/index.html" target="_blank">http://www.takino-d.com/index.html</a></span></dd>
</dl>

</div>
<div id="map">
<h3>地図</h3>
<p> <iframe width="450" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.co.jp/maps?f=q&amp;hl=ja&amp;geocode=&amp;q=%E3%82%BF%E3%82%AD%E3%83%8E%E6%AD%AF%E7%A7%91&amp;sll=34.994672,135.725098&amp;sspn=0.014484,0.029182&amp;ie=UTF8&amp;cid=34988832,135725992,7221992302010505736&amp;s=AARTsJq1sW8-E_vOGnZl0uwVZPJ7hYiE0g&amp;ll=34.992984,135.724669&amp;spn=0.012305,0.019312&amp;z=15&amp;iwloc=A&amp;output=embed"></iframe><br /><small><a href="http://maps.google.co.jp/maps?f=q&amp;hl=ja&amp;geocode=&amp;q=%E3%82%BF%E3%82%AD%E3%83%8E%E6%AD%AF%E7%A7%91&amp;sll=34.994672,135.725098&amp;sspn=0.014484,0.029182&amp;ie=UTF8&amp;cid=34988832,135725992,7221992302010505736&amp;ll=34.992984,135.724669&amp;spn=0.012305,0.019312&amp;z=15&amp;iwloc=A&amp;source=embed" style="color:#0000FF;text-align:left">大きな地図で見る</a></small>
 </p>
</div>
<div id="access">
<h3>交通案内</h3>
<p> 阪急線　西京極駅　徒歩12分</p>
</div>
</div>
]]>
        
    </content>
</entry>

<entry>
    <title>鈴木歯科・矯正歯科医院（埼玉県さいたま市）大宮</title>
    <link rel="alternate" type="text/html" href="http://wom-tv.com/dental/0050063.php" />
    <id>tag:wom-tv.com,2010:/dental//12.17353</id>

    <published>2010-02-28T09:03:44Z</published>
    <updated>2010-02-28T09:05:34Z</updated>

    <summary>さいたま市大宮区の歯科医院 鈴木歯科・矯正歯科医院。さいたま新都心駅から徒歩15分で、歯並び矯正・咬み合せ治療がオススメ。</summary>
    <author>
        <name>後藤梨衣</name>
        
    </author>
    
        <category term="11埼玉県" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="さいたま新都心益" label="さいたま新都心益" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="中村修造" label="中村修造" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="埼玉県" label="埼玉県" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="埼玉県さいたま市" label="埼玉県さいたま市" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="ja" xml:base="http://wom-tv.com/dental/">
        <![CDATA[<div class="informationpage">
<div class="pageimage">
<p><img src="http://wom-tv.org/info/3738.jpg" alt="内外観写真" /></p>
</div>
<div class="description">
<p>さいたま市大宮区の歯科医院 鈴木歯科・矯正歯科医院。さいたま新都心駅から徒歩15分で、歯並び矯正・咬み合せ治療がオススメ。</p>
</div>
<div class="attribute">
<dl class="atttop">
<dt>店舗名</dt>
<dd> 鈴木歯科・矯正歯科医院 </dd>
</dl>
<dl>
<dt>住所</dt>
<dd> 埼玉県さいたま市大宮区浅間町2-101 <br />
<a href="#map" title="地図・交通案内を見る">地図・交通案内を見る</a></dd>
</dl>
<dl>
<dt>アクセス</dt>
<dd> JR埼京線さいたま新都心駅徒歩15分 </dd>
</dl>
<dl>
<dt>電話番号</dt>
<dd> 048-631-5338 </dd>
</dl>
<dl>
<dt>受付時間</dt>
<dd> 9:00～13:00 / 15:00～19:00 </dd>
</dl>
<dl>
<dt>定休日</dt>
<dd> 木、日、祝 </dd>
</dl>
<dl>
<dt>カード</dt>
<dd> 各種クレジット </dd>
</dl>
<dl>
<dt>メニュー</dt>
<dd> 無痛治療/歯周病治療/知覚過敏/口臭治療/顎関節症/口腔乾燥症/かみ合わせ/歯ぎしり/予防歯科/矯正歯科/審美歯科/ホワイトニング/セラミックインレー/セラミッククラウン/メタルボンド/クラウン/インプラント/ラミネートベニア/歯肉整形/歯列矯正/歯茎のﾋﾟｰﾘﾝｸﾞ/バネのない入れ歯/シンデレラスマイル </dd>
</dl>
<dl>
<dt>設備</dt>
<dd> 保険適応/駐車場/個室診療室/無料カウンセリング </dd>
</dl>
<dl>
<dt>ホームページ</dt>
<dd><span class="hp"><a href="http://www4.ocn.ne.jp/~s-dc/index.html" target="_blank">http://www4.ocn.ne.jp/~s-dc/index.html</a></span></dd>
</dl>
<!--<dl>
<dt>ブログ</dt>
<dd><span class="blog"><a href="【店舗（院）のブログURLを入力】" target="_blank">【店舗（院）のブログURLを入力】</a></span></dd>
</dl>
<dl class="attbottom">
<dt>携帯サイト</dt>
<dd><span class="blog"><a href="【店舗（院）の携帯サイトURLを入力】" target="_blank">【店舗（院）の携帯サイトURLを入力】</a></span></dd>
</dl>-->
</div>
<!--<div class="infonew">
<div class="h3">
<h3>新着情報</h3>
</div>
<script type="text/javascript" src="http://www.google.com/jsapi?key=ABQIAAAAYc4d0BghdN25mdBcaAVRMBSwl1VFnqfIRIA0v-3T1orz17-6TxQ8Gi3-6z6O7DWgRw2K1lqzi6E-zA"></script>
<script type="text/javascript">
google.load("feeds", "1");
function initialize() {
var feedurl = "【 mydomain.com 】";
var feed = new google.feeds.Feed(feedurl);
feed.setNumEntries(8);
feed.load(dispfeed);
function dispfeed(result){
if (!result.error){
var container = document.getElementById("feed");
var htmlstr = "";
htmlstr += "<ul>";
for (var i = 0; i < result.feed.entries.length; i++) {
var entry = result.feed.entries[i];
htmlstr += "<li>"
htmlstr += '<a href="' + entry.link + '" target="_blank">' + entry.title + '</a>';
htmlstr += "&nbsp;&nbsp;"
var strdate = createDateString(entry.publishedDate);
htmlstr += "(" + strdate + ")";
htmlstr += "</li>"
}
htmlstr += "</ul>";
 container.innerHTML = htmlstr;
}else{
 alert(result.error.code + ":" + result.error.message);
}
}
}
function createDateString(publishedDate){
var pdate = new Date(publishedDate);
var pday = pdate.getDate();
var pmonth = pdate.getMonth() + 1;
var pyear = pdate.getFullYear();
var strdate = pyear + "年" + pmonth + "月" + pday + "日";
return strdate;
}
google.setOnLoadCallback(initialize);
</script>
<div id="feed"></div>
</div>-->
<div id="map">
<h3>地図</h3>
<p> <iframe width="450" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.co.jp/maps?f=q&amp;source=s_q&amp;hl=ja&amp;geocode=&amp;q=%E5%9F%BC%E7%8E%89%E7%9C%8C%E3%81%95%E3%81%84%E3%81%9F%E3%81%BE%E5%B8%82%E5%A4%A7%E5%AE%AE%E5%8C%BA%E6%B5%85%E9%96%93%E7%94%BA2-101+%E9%88%B4%E6%9C%A8%E6%AD%AF%E7%A7%91%E3%83%BB%E7%9F%AF%E6%AD%A3%E6%AD%AF%E7%A7%91%E5%8C%BB%E9%99%A2&amp;sll=35.994813,138.152497&amp;sspn=0.007621,0.015965&amp;brcurrent=3,0x6018c113df3cf16d:0xf9ea1aee3ee03d87,0&amp;ie=UTF8&amp;hq=%E9%88%B4%E6%9C%A8%E6%AD%AF%E7%A7%91%E3%83%BB%E7%9F%AF%E6%AD%A3%E6%AD%AF%E7%A7%91%E5%8C%BB%E9%99%A2&amp;hnear=%E5%9F%BC%E7%8E%89%E7%9C%8C%E3%81%95%E3%81%84%E3%81%9F%E3%81%BE%E5%B8%82%E5%A4%A7%E5%AE%AE%E5%8C%BA%E6%B5%85%E9%96%93%E7%94%BA%EF%BC%92%E4%B8%81%E7%9B%AE%EF%BC%91%EF%BC%90%EF%BC%91&amp;cid=16424547765720672270&amp;ll=35.912758,139.638634&amp;spn=0.02433,0.038624&amp;z=14&amp;iwloc=A&amp;output=embed"></iframe><br /><small><a href="http://maps.google.co.jp/maps?f=q&amp;source=embed&amp;hl=ja&amp;geocode=&amp;q=%E5%9F%BC%E7%8E%89%E7%9C%8C%E3%81%95%E3%81%84%E3%81%9F%E3%81%BE%E5%B8%82%E5%A4%A7%E5%AE%AE%E5%8C%BA%E6%B5%85%E9%96%93%E7%94%BA2-101+%E9%88%B4%E6%9C%A8%E6%AD%AF%E7%A7%91%E3%83%BB%E7%9F%AF%E6%AD%A3%E6%AD%AF%E7%A7%91%E5%8C%BB%E9%99%A2&amp;sll=35.994813,138.152497&amp;sspn=0.007621,0.015965&amp;brcurrent=3,0x6018c113df3cf16d:0xf9ea1aee3ee03d87,0&amp;ie=UTF8&amp;hq=%E9%88%B4%E6%9C%A8%E6%AD%AF%E7%A7%91%E3%83%BB%E7%9F%AF%E6%AD%A3%E6%AD%AF%E7%A7%91%E5%8C%BB%E9%99%A2&amp;hnear=%E5%9F%BC%E7%8E%89%E7%9C%8C%E3%81%95%E3%81%84%E3%81%9F%E3%81%BE%E5%B8%82%E5%A4%A7%E5%AE%AE%E5%8C%BA%E6%B5%85%E9%96%93%E7%94%BA%EF%BC%92%E4%B8%81%E7%9B%AE%EF%BC%91%EF%BC%90%EF%BC%91&amp;cid=16424547765720672270&amp;ll=35.912758,139.638634&amp;spn=0.02433,0.038624&amp;z=14&amp;iwloc=A" style="color:#0000FF;text-align:left">大きな地図で見る</a></small> </p>
</div>
<div id="access">
<h3>交通案内</h3>
<p> JR埼京線さいたま新都心駅徒歩15分 </p>
</div>
</div>
]]>
        
    </content>
</entry>

<entry>
    <title>そむら歯科クリニック（東京都国分寺市）国分寺駅</title>
    <link rel="alternate" type="text/html" href="http://wom-tv.com/dental/0190035.php" />
    <id>tag:wom-tv.com,2010:/dental//12.17324</id>

    <published>2010-02-28T03:57:40Z</published>
    <updated>2010-02-28T04:01:42Z</updated>

    <summary>国分寺市の歯科医院 そむら歯科クリニック。国分寺駅から徒歩3分で、インプラントやホワイトニングがオススメ。</summary>
    <author>
        <name>岡本大助</name>
        
    </author>
    
        <category term="13東京都" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="国分寺駅" label="国分寺駅" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="岡本大助" label="岡本大助" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="東京都" label="東京都" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="東京都国分寺市" label="東京都国分寺市" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="ja" xml:base="http://wom-tv.com/dental/">
        <![CDATA[<div class="informationpage">
<div class="pageimage">
<p><img src="http://wom-tv.org/info/3657.jpg" alt="内外観写真" /></p>
</div>
<div class="description">
<p>国分寺市の歯科医院 そむら歯科クリニック。国分寺駅から徒歩3分で、インプラントやホワイトニングがオススメ。</p>
</div>
<div class="attribute">
<dl class="atttop">
<dt>店舗名</dt>
<dd> そむら歯科クリニック </dd>
</dl>
<dl>
<dt>住所</dt>
<dd> 東京都国分寺市南町2-17-4-1F <br />
<a href="#map" title="地図・交通案内を見る">地図・交通案内を見る</a></dd>
</dl>
<dl>
<dt>アクセス</dt>
<dd> JR中央線、西武国分寺線 国分寺駅 徒歩3分 </dd>
</dl>
<dl>
<dt>電話番号</dt>
<dd> 042-321-1583 </dd>
</dl>
<dl>
<dt>受付時間</dt>
<dd> 月火水金土 9:30～13:00 / 15:00～20:00<br />
 　木 9:30～13:00 / 14:00～17:00 </dd>
</dl>
<dl>
<dt>定休日</dt>
<dd> 日祝祭日 </dd>
</dl>
<dl>
<dt>カード</dt>
<dd> 未対応 </dd>
</dl>
<dl>
<dt>メニュー</dt>
<dd> 歯周病治療/知覚過敏/口臭治療/顎関節症/口腔乾燥症/かみ合わせ/歯ぎしり/口腔外科/予防歯科/矯正歯科/矯正歯科/ホワイトニング/セラミックインレー/セラミッククラウン/メタルボンドクラウン/インプラント/ラミネートベニア/歯肉整形/歯列矯正/バネのない入れ歯 </dd>
</dl>
<dl>
<dt>設備</dt>
<dd> 保険適用/夜間診療/キッズコーナー/パウダールーム/女性医師/個室診療室/無料カウンセリング </dd>
</dl>
<dl>
<dt>ホームページ</dt>
<dd><span class="hp"><a href="http://www.somura-dental.com/" target="_blank">http://www.somura-dental.com/</a></span></dd>
</dl>
</div>
<div id="map">
<h3>地図</h3>
<p> <iframe width="450" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.co.jp/maps?f=q&amp;hl=ja&amp;geocode=&amp;q=%E3%81%9D%E3%82%80%E3%82%89&amp;sll=35.700244,139.483581&amp;sspn=0.007946,0.013132&amp;ie=UTF8&amp;cid=35699800,139483741,4798414483766404146&amp;s=AARTsJrUNAK6Qkfphakc1InH7PHZbI8jjA&amp;ll=35.702248,139.483044&amp;spn=0.006099,0.009656&amp;z=16&amp;iwloc=A&amp;output=embed"></iframe><br /><small><a href="http://maps.google.co.jp/maps?f=q&amp;hl=ja&amp;geocode=&amp;q=%E3%81%9D%E3%82%80%E3%82%89&amp;sll=35.700244,139.483581&amp;sspn=0.007946,0.013132&amp;ie=UTF8&amp;cid=35699800,139483741,4798414483766404146&amp;ll=35.702248,139.483044&amp;spn=0.006099,0.009656&amp;z=16&amp;iwloc=A&amp;source=embed" style="color:#0000FF;text-align:left">大きな地図で見る</a></small> </p>
</div>
<div id="access">
<h3>交通案内</h3>
<p> JR中央線、西武国分寺線　国分寺駅　徒歩3分 </p>
</div>
</div>
]]>
        
    </content>
</entry>

<entry>
    <title>志田歯科（東京都葛飾区）金町</title>
    <link rel="alternate" type="text/html" href="http://wom-tv.com/dental/0040130.php" />
    <id>tag:wom-tv.com,2010:/dental//12.17305</id>

    <published>2010-02-27T15:37:27Z</published>
    <updated>2010-02-27T15:54:14Z</updated>

    <summary>東京都葛飾区の歯科医院 志田歯科。金町駅から徒歩5分で、審美歯科がオススメ。</summary>
    <author>
        <name>後藤梨衣</name>
        
    </author>
    
        <category term="13東京都" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="徳山光志" label="徳山光志" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="東京都" label="東京都" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="東京都葛飾区" label="東京都葛飾区" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="金町駅" label="金町駅" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="ja" xml:base="http://wom-tv.com/dental/">
        <![CDATA[<div class="informationpage">
<div class="pageimage">
<p><img src="http://wom-tv.org/info/3375.jpg" alt="内外観写真" /></p>
</div>
<div class="description">
<p>東京都葛飾区の歯科医院 志田歯科。金町駅から徒歩5分で、審美歯科がオススメ。</p>
</div>
<div class="attribute">
<dl class="atttop">
<dt>店舗名</dt>
<dd> 志田歯科 </dd>
</dl>
<dl>
<dt>住所</dt>
<dd> 東京都葛飾区東金町3-13-7 <br />
<a href="#map" title="地図・交通案内を見る">地図・交通案内を見る</a></dd>
</dl>
<dl>
<dt>アクセス</dt>
<dd> 千代田線　金町駅　徒歩5分 </dd>
</dl>
<dl>
<dt>電話番号</dt>
<dd> 03-3607-8984 </dd>
</dl>
<dl>
<dt>受付時間</dt>
<dd> （月・火・水・金）<br />
　10:00～13：00、15:00～21：00<br />
　（土曜日）<br />
　10:00～13:00、14:00～17:00 </dd>
</dl>
<dl>
<dt>定休日</dt>
<dd> 木曜日・日曜日・祝日 </dd>
</dl>
<dl>
<dt>カード</dt>
<dd> 未対応 </dd>
</dl>
<dl>
<dt>メニュー</dt>
<dd> 歯周病治療/知覚過敏/顎関節症/かみ合わせ/歯ぎしり/口腔外科/ホワイトニング/セラミックインレー/セラミッククラウン/インプラント/ラミネートベニア/歯肉整形/バネのない入れ歯/メタルボンドクラウン </dd>
</dl>
<dl>
<dt>設備</dt>
<dd> 女性医師/英語対応 可 </dd>
</dl>
<dl>
<dt>ホームページ</dt>
<dd>&nbsp;</dd>
</dl>
<!--
<dl>
<dt>ブログ</dt>
<dd><span class="blog"><a href="【店舗（院）のブログURLを入力】" target="_blank">【店舗（院）のブログURLを入力】</a></span></dd>
</dl>
<dl class="attbottom">
<dt>携帯サイト</dt>
<dd><span class="blog"><a href="【店舗（院）の携帯サイトURLを入力】" target="_blank">【店舗（院）の携帯サイトURLを入力】</a></span></dd>
</dl> -->
</div>
<!--
<div class="infonew">
<div class="h3">
<h3>新着情報</h3>
</div>
<script type="text/javascript" src="http://www.google.com/jsapi?key=ABQIAAAAYc4d0BghdN25mdBcaAVRMBSwl1VFnqfIRIA0v-3T1orz17-6TxQ8Gi3-6z6O7DWgRw2K1lqzi6E-zA"></script>
<script type="text/javascript">
google.load("feeds", "1");
function initialize() {
var feedurl = "【 mydomain.com 】";
var feed = new google.feeds.Feed(feedurl);
feed.setNumEntries(8);
feed.load(dispfeed);
function dispfeed(result){
if (!result.error){
var container = document.getElementById("feed");
var htmlstr = "";
htmlstr += "<ul>";
for (var i = 0; i < result.feed.entries.length; i++) {
var entry = result.feed.entries[i];
htmlstr += "<li>"
htmlstr += '<a href="' + entry.link + '" target="_blank">' + entry.title + '</a>';
htmlstr += "&nbsp;&nbsp;"
var strdate = createDateString(entry.publishedDate);
htmlstr += "(" + strdate + ")";
htmlstr += "</li>"
}
htmlstr += "</ul>";
 container.innerHTML = htmlstr;
}else{
 alert(result.error.code + ":" + result.error.message);
}
}
}
function createDateString(publishedDate){
var pdate = new Date(publishedDate);
var pday = pdate.getDate();
var pmonth = pdate.getMonth() + 1;
var pyear = pdate.getFullYear();
var strdate = pyear + "年" + pmonth + "月" + pday + "日";
return strdate;
}
google.setOnLoadCallback(initialize);
</script>
<div id="feed"></div>
</div> -->
<div id="map">
<h3>地図</h3>
<p> <iframe width="450" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.co.jp/maps?q=%E6%9D%B1%E4%BA%AC%E9%83%BD%E8%91%9B%E9%A3%BE%E5%8C%BA%E6%9D%B1%E9%87%91%E7%94%BA3-13-7&amp;ie=UTF8&amp;s=AARTsJo-H7nIi0KPCafGo7o1ZESw1wJYrQ&amp;ll=35.779246,139.878616&amp;spn=0.024371,0.038624&amp;z=14&amp;iwloc=addr&amp;output=embed"></iframe><br /><small><a href="http://maps.google.co.jp/maps?q=%E6%9D%B1%E4%BA%AC%E9%83%BD%E8%91%9B%E9%A3%BE%E5%8C%BA%E6%9D%B1%E9%87%91%E7%94%BA3-13-7&amp;ie=UTF8&amp;ll=35.779246,139.878616&amp;spn=0.024371,0.038624&amp;z=14&amp;iwloc=addr&amp;source=embed" style="color:#0000FF;text-align:left">大きな地図で見る</a></small> </p>
</div>
<div id="access">
<h3>交通案内</h3>
<p> 千代田線　金町駅　徒歩5分 </p>
</div>
</div>
]]>
        
    </content>
</entry>

<entry>
    <title>小川歯科・天王洲インプラントセンター（東京都品川区）天王洲アイル</title>
    <link rel="alternate" type="text/html" href="http://wom-tv.com/dental/0070140.php" />
    <id>tag:wom-tv.com,2010:/dental//12.17298</id>

    <published>2010-02-27T13:31:54Z</published>
    <updated>2010-02-27T14:09:07Z</updated>

    <summary>品川区東品川の歯科医院 小川歯科・天王洲インプラントセンター 。天王洲アイル駅より徒歩1分。審美メニューがオススメ</summary>
    <author>
        <name>後藤梨衣</name>
        
    </author>
    
        <category term="13東京都" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="天王洲アイル駅" label="天王洲アイル駅" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="東京都" label="東京都" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="東京都品川区" label="東京都品川区" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="輔野聖士" label="輔野聖士" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="ja" xml:base="http://wom-tv.com/dental/">
        <![CDATA[<div class="informationpage">
<div class="pageimage">
<p><img src="http://wom-tv.org/info/3515.jpg" alt="内外観写真" /></p>
</div>

<div class="description">
<p>品川区東品川の歯科医院 小川歯科・天王洲インプラントセンター 。天王洲アイル駅より徒歩1分。前歯のインプラントがオススメ</p>
</div>

<div class="attribute">
<dl class="atttop">
<dt>店舗名</dt>
<dd> 小川歯科・天王洲インプラントセンター </dd>
</dl>
<dl>
<dt>住所</dt>
<dd> 東京都品川区東品川2-2-4 15F <br /><a href="#map" title="地図・交通案内を見る">地図・交通案内を見る</a></dd>
</dl>
<dl>
<dt>アクセス</dt>
<dd>モノレール線　天王洲アイル駅　徒歩1分<br />
りんかい線　天王洲アイル駅　徒歩3分 </dd>
</dl>
<dl>
<dt>電話番号</dt>
<dd> 03-5460-8148 </dd>
</dl>
<dl>
<dt>受付時間</dt>
<dd>月～金　 9:30～18:00<br />
土曜日　10:00～11:00
 </dd>
</dl>
<dl>
<dt>定休日</dt>
<dd> 土・日祝祭日 </dd>
</dl>
<dl>
<dt>カード</dt>
<dd> 各種クレジットカード対応 </dd>
</dl>
<dl>
<dt>メニュー</dt>
<dd> 歯周病治療/顎関節症/歯ぎしり/矯正歯科/知覚過敏/口腔外科/口臭治療/かみ合わせ/予防歯科/審美歯科/ホワイトニング/メタルボンドクラウン/歯肉整形/バネのない入れ歯/セラミックインレー/インプラント/歯列矯正/セラミッククラウン/ラミネートベニア/歯茎のホワイトニング(ピーリング) </dd>
</dl>
<dl>
<dt>設備</dt>
<dd> 英語対応/駐車場/無料カウンセリング/パウダールーム/個室診療室 </dd>
</dl>
<dl>
<dt>ホームページ</dt>
<dd><span class="hp"><a href="http://www.ogawa-dental.com/" target="_blank">http://www.ogawa-dental.com/</a></span></dd></dl>
<dl>
<dt>ブログ</dt>
<dd><span class="blog"><a href="http://blog.goo.ne.jp/ogawadental/" target="_blank">http://blog.goo.ne.jp/ogawadental/</a></span></dd></dl>
<!--<dl class="attbottom">
<dt>携帯サイト</dt>
<dd><span class="blog"><a href="http://m.wom-tv.com/massage/0030038/" target="_blank">http://m.wom-tv.com/massage/0030038/</a></span></dd>
</dl>-->
</div>
<div class="infonew">
<div class="h3">
<h3>新着情報</h3>
</div>
<script type="text/javascript" src="http://www.google.com/jsapi?key=ABQIAAAAYc4d0BghdN25mdBcaAVRMBSwl1VFnqfIRIA0v-3T1orz17-6TxQ8Gi3-6z6O7DWgRw2K1lqzi6E-zA"></script>
<script type="text/javascript">
google.load("feeds", "1");
function initialize() {
var feedurl = "http://blog.goo.ne.jp/ogawadental/rss2.xml";
var feed = new google.feeds.Feed(feedurl);
feed.setNumEntries(8);
feed.load(dispfeed);
function dispfeed(result){
if (!result.error){
var container = document.getElementById("feed");
var htmlstr = "";
htmlstr += "<ul>";
for (var i = 0; i < result.feed.entries.length; i++) {
var entry = result.feed.entries[i];
htmlstr += "<li>"
htmlstr += '<a href="' + entry.link + '" target="_blank">' + entry.title + '</a>';
htmlstr += "&nbsp;&nbsp;"
var strdate = createDateString(entry.publishedDate);
htmlstr += "(" + strdate + ")";
htmlstr += "</li>"
}
htmlstr += "</ul>";
 container.innerHTML = htmlstr;
}else{
 alert(result.error.code + ":" + result.error.message);
}
}
}
function createDateString(publishedDate){
var pdate = new Date(publishedDate);
var pday = pdate.getDate();
var pmonth = pdate.getMonth() + 1;
var pyear = pdate.getFullYear();
var strdate = pyear + "年" + pmonth + "月" + pday + "日";
return strdate;
}
google.setOnLoadCallback(initialize);
</script>
<div id="feed"></div>
</div>
<div id="map">
<h3>地図</h3>
<p>
<iframe width="450" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.co.jp/maps?f=q&amp;hl=ja&amp;geocode=&amp;q=%E5%93%81%E5%B7%9D%E5%8C%BA%E6%9D%B1%E5%93%81%E5%B7%9D2-2-4&amp;sll=35.666536,139.722919&amp;sspn=0.017607,0.030899&amp;ie=UTF8&amp;s=AARTsJoshhuZIPzM8Piek0pmBMQ5W6GIUA&amp;ll=35.623692,139.749591&amp;spn=0.003052,0.004828&amp;z=17&amp;iwloc=addr&amp;output=embed"></iframe><br /><small><a href="http://maps.google.co.jp/maps?f=q&amp;hl=ja&amp;geocode=&amp;q=%E5%93%81%E5%B7%9D%E5%8C%BA%E6%9D%B1%E5%93%81%E5%B7%9D2-2-4&amp;sll=35.666536,139.722919&amp;sspn=0.017607,0.030899&amp;ie=UTF8&amp;ll=35.623692,139.749591&amp;spn=0.003052,0.004828&amp;z=17&amp;iwloc=addr&amp;source=embed" style="color:#0000FF;text-align:left">大きな地図で見る</a></small>
</p>
</div>
<div id="access">
<h3>交通案内</h3>
<p>モノレール線　天王洲アイル駅　徒歩1分<br />
りんかい線　天王洲アイル駅　徒歩3分
</p>
</div>
</div>]]>
        
    </content>
</entry>

</feed>
