function topNavi(dPath){

dirPath = "";
switch (dPath) {
case 1:
    dirPath = "./";
    break;
case 2:
    dirPath = "../";
    break;
case 3:
    dirPath = "../../";
    break;
case 4:
    dirPath = "../../../";
    break;
case 5:
    dirPath = "http://www.happywhisper.com/";
    break;
default:
    dirPath = dPath;
    break;
}

document.writeln("<div id='nav'>");
document.writeln("<div class='logo'>");
document.writeln("<p><a href='"+ dirPath +"index.html'><img src='"+ dirPath +"common/nav_logo.png' alt='ウィスパー' width='150' height='45' border='0'></a></p>");
document.writeln("<p><a href='"+ dirPath +"index.html'><img src='"+ dirPath +"common/nav_home.png' alt='HOME' width='150' height='28' border='0'></a></p>");
document.writeln("</div>");
document.writeln("<div class='navBtn'>");
document.writeln("<ul class='top'>");
document.writeln("<li><a href='"+ dirPath +"lineup/index.html'><img src='"+ dirPath +"common/nav01_off.png' alt='製品情報' width='156' height='29' border='0'></a></li>");
document.writeln("<li><a href='javascript:openFixWin(\""+ dirPath +"lineup/select/01.html\", \"bfw\", 430, 430)'><img src='"+ dirPath +"common/nav02_off.png' alt='BEST FIT WHISPER' width='149' height='29' border='0'></a></li>");
document.writeln("<li><a href='"+ dirPath +"hccom/index.html'><img src='"+ dirPath +"common/nav03_off.png' alt='携帯サービス ハッピーサイクル' width='149' height='29' border='0'></a></li>");
document.writeln("<li><a href='"+ dirPath +"advice/index_what.html'><img src='"+ dirPath +"common/nav04_off.png' alt='ハッピーサイクルって？' width='146' height='29' border='0'></a></li>");
document.writeln("</ul>");
document.writeln("<ul class='btm'>");
document.writeln("<li><a href='"+ dirPath +"behappy/index.html'><img src='"+ dirPath +"common/nav05_off.png' alt='Be Happy' width='156' height='27' border='0'></a></li>");
document.writeln("<li><a href='"+ dirPath +"happy_clinic/index.html'><img src='"+ dirPath +"common/nav06_off.png' alt='ハッピークリニック' width='149' height='27' border='0'></a></li>");
document.writeln("<li><a href='"+ dirPath +"doctor_guide/index.html'><img src='"+ dirPath +"common/nav07_off.png' alt='ドクターガイド' width='149' height='27' border='0'></a></li>");
document.writeln("<li><a href='"+ dirPath +"health/index.html'><img src='"+ dirPath +"common/nav08_off.png' alt='Womens Health' width='146' height='27' border='0'></a></li>");
document.writeln("</ul>");
document.writeln("<p><a href='"+ dirPath +"sitemap/index.html'><img src='"+ dirPath +"common/nav_sitemap.png' alt='SITEMAP' width='146' height='17' border='0'></a></p>");
document.writeln("</div>");
document.writeln("</div>");
}
