<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<SCRIPT Language="JavaScript" encode="big-5">
function DateAdd(oDate, iYearAmount, iMonthAmount, iDayAmount)
{
  if (oDate == null || typeof(oDate) == "undefined") return null;
  if (isNaN(iYearAmount)) 
    iYearAmount = 0;
  else
    iYearAmount = parseInt(iYearAmount);
  if (isNaN(iMonthAmount)) 
    iMonthAmount = 0;
  else
    iMonthAmount = parseInt(iMonthAmount);
  if (isNaN(iDayAmount)) 
    iDayAmount = 0;
  else
    iDayAmount = parseInt(iDayAmount);

  var NewDate = oDate
  if (iYearAmount + iMonthAmount + iDayAmount > 0)
  {
    if ( iMonthAmount == 72 ) {
      var NewYear = NewDate.getYear() + 6;
      var NewMonth = NewDate.getMonth();
      var NewDay = 1;
      if (NewMonth < 8 ) {
        NewMonth = 8;
      }
      else
      {
	NewMonth = 8;
	NewYear = NewYear + 1;
      }
      NewDate = new Date(NewYear, NewMonth, NewDay);
    }
    else
    {
      var NewYear = NewDate.getYear() + iYearAmount;
      var NewMonth = NewDate.getMonth() + iMonthAmount;
      var NewDay = NewDate.getDate() + iDayAmount;
      NewDate = new Date(NewYear, NewMonth, NewDay);
    }
  }
  return NewDate;  
}

function Date2YYYYMMDD(oDate, splitChar)
{
  var TypeName = typeof(oDate);
  if (oDate == null || TypeName == "undefined") return "";
  if (TypeName == "string" || TypeName == "number") {
    oDate = new Date(oDate);
    if (isNaN(oDate)) return "";
  }
  if (splitChar == null) splitChar = "";
  var YYYY = "000" + oDate.getYear();
  var MM = "0" + (oDate.getMonth()+1);
  var DD = "0" + oDate.getDate();
  YYYY = YYYY.substr(YYYY.length-4, 4);
  MM = MM.substr(MM.length-2,2);
  DD = DD.substr(DD.length-2,2);
  return YYYY + splitChar + MM + splitChar + DD;  
}

function Date2ROCYYMMDD(oROCDate, splitChar, yearLength)
{
  var TypeName = typeof(oROCDate);
  if (oROCDate == null || TypeName == "undefined") return "";
  if (TypeName == "string" || TypeName == "number") {
    oROCDate = new Date(oROCDate);
    if (isNaN(oROCDate)) return "";
  }
  if (splitChar == null) splitChar = "";
  var YYY = "0" + (oROCDate.getYear()-1911);
  var MM = "0" + (oROCDate.getMonth()+1);
  var DD = "0" + oROCDate.getDate();
  if (isNaN(yearLength) || yearLength < 2) yearLength = 2;
  if (yearLength < YYY.length-1) yearLength = YYY.length-1;
  YYY = YYY.substr(YYY.length-yearLength, yearLength);
  MM = MM.substr(MM.length-2,2);
  DD = DD.substr(DD.length-2,2);
  return YYY + splitChar + MM + splitChar + DD;  
}

function ROCDate2Date(sROCDate, splitChar)
{
  if (sROCDate == null || typeof(sROCDate) == "undefined") return null;
  if (splitChar == null) splitChar = "";
  var oDate = null;
  var YYY = "", MM = "", DD = "";
  if (sROCDate.length >= 6 && !isNaN(sROCDate))
  {
    YYY = sROCDate.substr(0, sROCDate.length-4);
    MM = sROCDate.substr(sROCDate.length-4,2);
    DD = sROCDate.substr(sROCDate.length-2,2);
  } else if(splitChar != "" && sROCDate.indexOf(splitChar) > 0)
  {
    var DatePart = sROCDate.split(splitChar);
    if (DatePart.length == 3) {
      YYY = DatePart[0];
      MM = DatePart[1];
      DD = DatePart[2];
    }
  }
  if (!isNaN(YYY) && !isNaN(MM) && !isNaN(DD))
  {
    YYY = parseInt(YYY,10)+1911;
    MM = parseInt(MM,10);
    DD = parseInt(DD,10);
    if ((MM >= 1 && MM <= 12) && (DD >= 1 && DD <= 31))
    {
      oDate = new Date(YYY, MM-1, DD);
      if (oDate.getYear() != YYY || oDate.getMonth() != MM-1 || oDate.getDate() != DD) 
      {
        oDate = null;
        alert("日期錯誤 !!");
      }
    } else
    {
      oDate = null;
      alert("日期錯誤 !!");
    }
  }
  return oDate;
}
</SCRIPT>

<SCRIPT Language="JavaScript" encode="big-5">
var VaccDatas = new Array();
VaccDatas[0] = new VaccData(0, 0, 0, "出生 24小時內", new Array("B型肝炎免疫球蛋白一劑 <sup>1</sup>"));
VaccDatas[1] = new VaccData(0, 0, 1, "出生滿 24小時以後", new Array("卡介苗一劑"));
VaccDatas[2] = new VaccData(0, 0, 3, "出生滿 2-5天", new Array("B型肝炎遺傳工程疫苗第一劑"));
VaccDatas[3] = new VaccData(0, 1, 0, "出生滿 1個月", new Array("B型肝炎遺傳工程疫苗第二劑"));
VaccDatas[4] = new VaccData(0, 2, 0, "出生滿 2個月", new Array("小兒麻痺口服疫苗第一劑", "白喉破傷風百日咳混合疫苗第一劑"));
VaccDatas[5] = new VaccData(0, 4, 0, "出生滿 4個月", new Array("小兒麻痺口服疫苗第二劑", "白喉破傷風百日咳風混合疫苗第二劑"));
VaccDatas[6] = new VaccData(0, 6, 0, "出生滿 6個月", new Array("小兒麻痺口服疫苗第三劑", "白喉破傷風百日咳混合疫苗第三劑", "B型肝炎遺傳工程疫苗第三劑"));
VaccDatas[7] = new VaccData(1, 0, 0, "出生滿 12個月", new Array("麻疹腮腺炎德國麻疹混合疫苗第一劑","水痘疫苗一劑"));
VaccDatas[8] = new VaccData(1, 3, 0, "出生滿 15個月", new Array("日本腦炎疫苗第一劑、第二劑(間隔兩週)<sup>2</sup>"));
VaccDatas[9] = new VaccData(1, 6, 0, "出生滿 18個月", new Array("小兒麻痺口服疫苗第四劑", "白喉破傷風百日咳混合疫苗第四劑"));
VaccDatas[10] = new VaccData(2, 3, 0, "出生滿 27個月", new Array("日本腦炎疫苗第三劑"));
VaccDatas[11] = new VaccData(0, 72, 0, "國小一年級<sup>3</sup>", new Array("減量破傷風白喉非細胞性百日咳混合疫苗一劑", "小兒麻痺口服疫苗一劑", "麻疹腮腺炎德國麻疹混合疫苗第二劑","日本腦炎疫苗第四劑"));

function ShowVaccList(sBirthday, sDivID, sUserName)
{
  var AlertMsg = "";
  if (window.location.href.substring(0,7).toLowerCase() != "http://") 
  {
    AlertMsg = "請勿將此網頁複製到您的電腦上使用，\r\n經由網站使用才能確保疫苗基本資料的正確性";
    alert(AlertMsg);
  }
  var oBirthday = ROCDate2Date(sBirthday);
  var dtCond1 = ROCDate2Date("0990101");
  var dtCond2 = ROCDate2Date("0981101");
  var dtCond3 = ROCDate2Date("0980901");
  var dtCond4 = ROCDate2Date("0970901");
  var oDiv = document.getElementById(sDivID)
  
  if (oBirthday >= dtCond1)
  {
	VaccDatas[4] = new VaccData(0, 2, 0, "出生滿 2個月", new Array("五合一疫苗(白喉破傷風非細胞性百日咳、<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;b型嗜血桿菌及不活化小兒麻痺混合疫苗)第一劑"));
	VaccDatas[5] = new VaccData(0, 4, 0, "出生滿 4個月", new Array("五合一疫苗(白喉破傷風非細胞性百日咳、<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;b型嗜血桿菌及不活化小兒麻痺混合疫苗)第二劑"));
	VaccDatas[6] = new VaccData(0, 6, 0, "出生滿 6個月", new Array("B型肝炎遺傳工程疫苗第三劑", "五合一疫苗(白喉破傷風非細胞性百日咳、<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;b型嗜血桿菌及不活化小兒麻痺混合疫苗)第三劑"));
  	VaccDatas[9] = new VaccData(1, 6, 0, "出生滿 18個月", new Array("五合一疫苗(白喉破傷風非細胞性百日咳、<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;b型嗜血桿菌及不活化小兒麻痺混合疫苗)第四劑"));
  }
  else if (oBirthday >= dtCond2)
  {
	VaccDatas[4] = new VaccData(0, 2, 0, "出生滿 2個月", new Array("小兒麻痺口服疫苗第一劑", "白喉破傷風百日咳混合疫苗第一劑"));
	VaccDatas[5] = new VaccData(0, 4, 0, "出生滿 4個月", new Array("五合一疫苗(白喉破傷風非細胞性百日咳、<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;b型嗜血桿菌及不活化小兒麻痺混合疫苗)第二劑"));
	VaccDatas[6] = new VaccData(0, 6, 0, "出生滿 6個月", new Array("B型肝炎遺傳工程疫苗第三劑", "五合一疫苗(白喉破傷風非細胞性百日咳、<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;b型嗜血桿菌及不活化小兒麻痺混合疫苗)第三劑"));
  	VaccDatas[9] = new VaccData(1, 6, 0, "出生滿 18個月", new Array("五合一疫苗(白喉破傷風非細胞性百日咳、<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;b型嗜血桿菌及不活化小兒麻痺混合疫苗)第四劑"));
  }
   else if (oBirthday >= dtCond3)
  {
	VaccDatas[4] = new VaccData(0, 2, 0, "出生滿 2個月", new Array("小兒麻痺口服疫苗第一劑", "白喉破傷風百日咳混合疫苗第一劑"));
	VaccDatas[5] = new VaccData(0, 4, 0, "出生滿 4個月", new Array("小兒麻痺口服疫苗第二劑", "白喉破傷風百日咳風混合疫苗第二劑"));
	VaccDatas[6] = new VaccData(0, 6, 0, "出生滿 6個月", new Array("B型肝炎遺傳工程疫苗第三劑", "五合一疫苗(白喉破傷風非細胞性百日咳、<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;b型嗜血桿菌及不活化小兒麻痺混合疫苗)第三劑"));
  	VaccDatas[9] = new VaccData(1, 6, 0, "出生滿 18個月", new Array("五合一疫苗(白喉破傷風非細胞性百日咳、<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;b型嗜血桿菌及不活化小兒麻痺混合疫苗)第四劑"));
  }
  else if (oBirthday >= dtCond4)
  {
	VaccDatas[4] = new VaccData(0, 2, 0, "出生滿 2個月", new Array("小兒麻痺口服疫苗第一劑", "白喉破傷風百日咳混合疫苗第一劑"));
	VaccDatas[5] = new VaccData(0, 4, 0, "出生滿 4個月", new Array("小兒麻痺口服疫苗第二劑", "白喉破傷風百日咳風混合疫苗第二劑"));
	VaccDatas[6] = new VaccData(0, 6, 0, "出生滿 6個月", new Array("小兒麻痺口服疫苗第三劑", "白喉破傷風百日咳混合疫苗第三劑", "B型肝炎遺傳工程疫苗第三劑"));
  	VaccDatas[9] = new VaccData(1, 6, 0, "出生滿 18個月", new Array("五合一疫苗(白喉破傷風非細胞性百日咳、<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;b型嗜血桿菌及不活化小兒麻痺混合疫苗)第四劑"));
  }
  else 
  {
	VaccDatas[4] = new VaccData(0, 2, 0, "出生滿 2個月", new Array("小兒麻痺口服疫苗第一劑", "白喉破傷風百日咳混合疫苗第一劑"));
	VaccDatas[5] = new VaccData(0, 4, 0, "出生滿 4個月", new Array("小兒麻痺口服疫苗第二劑", "白喉破傷風百日咳風混合疫苗第二劑"));
	VaccDatas[6] = new VaccData(0, 6, 0, "出生滿 6個月", new Array("小兒麻痺口服疫苗第三劑", "白喉破傷風百日咳混合疫苗第三劑", "B型肝炎遺傳工程疫苗第三劑"));
  	VaccDatas[9] = new VaccData(1, 6, 0, "出生滿 18個月", new Array("小兒麻痺口服疫苗第四劑", "白喉破傷風百日咳混合疫苗第四劑"));
  }
 
  if (oBirthday != null && oDiv != null)
  {
    var sHtml
    sHtml = "";
    sHtml += "<p><font color='red'>" + AlertMsg + "</font></p>";
    sHtml += "<table border='1' cellspacing='1' width='100%' bgcolor='#00FFFF'>";
    sHtml += "  <tr>";
    sHtml += "    <td colspan='3'>";
    sHtml += "      <table border='0' cellspacing='1' width='100%' bgcolor='#00CCFF'>";
    sHtml += "        <tr><td align=center>" + sUserName + " 常規疫苗接種預定日期一覽表</td><tr>";
    sHtml += "        <tr><td height='2' bgcolor='#000000'></td><tr>";
    sHtml += "        <tr><td>生日(民國『年、月、日』) ：" + sBirthday + "</td><tr>";
    sHtml += "      </table>";
    sHtml += "    </td>";
    sHtml += "  </tr>";
    //title
    sHtml += "  <tr>";
    sHtml += "    <td>接種年齡</td><td>疫苗種類</td><td>預定接種日期『年、月、日』</td>";
    sHtml += "  </tr>";
    for (Vacc in VaccDatas)
    {
      sHtml += "  <tr>";
      sHtml += "    <td nowrap>" + VaccDatas[Vacc].VaccTitle + "</td>";
      sHtml += "    <td nowrap>"
      for (idx in VaccDatas[Vacc].VaccMsg) {
        sHtml += "● &nbsp;" + VaccDatas[Vacc].VaccMsg[idx] + "<br>";
      }
      sHtml += "</td>";
      sHtml += "    <td nowrap>" + Date2ROCYYMMDD(VaccDatas[Vacc].VaccDate(oBirthday), "", 3) + "</td>";
      sHtml += "  </tr>";
    }
    sHtml += "</table>";
    //備註
    sHtml += "<br><SPAN><sup>1</sup> </SPAN><SPAN>媽媽若為高傳染性B型肝炎帶原者（e抗原陽性），其寶寶應於 出生後儘速注射一劑B型肝炎免疫球蛋白，最遲不要超過24小時。</SPAN><br>";
    sHtml += "<SPAN><sup>2</sup> </SPAN><SPAN>日本腦炎疫苗每年集中於3月至5月接種，隔年接種第三劑。</SPAN><br>";
    sHtml += "<SPAN><sup>3</sup> </SPAN><SPAN>國小一年級應接種項目，目前係於學校採集中接種。</SPAN><br>";
    sHtml += "<br><SPAN>備註：</SPAN><br>";
    sHtml += "<SPAN>1.</SPAN><SPAN>表列為目前政府提供之常規預防接種項目，並依現行預防接種時程估算預定接種日期。</SPAN><br>";
    sHtml += "<SPAN>2.</SPAN><SPAN>各項疫苗接種時間可能因接種單位服務時間、寶寶身體狀況或集中接種…..等因素而酌情調整，如有疑問，請洽各縣市衛生局(所)或專業醫護人員諮詢。</SPAN><br>";
    
    oDiv.innerHTML = sHtml;
  }
}

function VaccData(yearAmount, monthAmount, dayAmount, vaccTitle, vaccMsg)
{
  if (isNaN(yearAmount))
    this.YearAmount = 0;
  else
    this.YearAmount = parseInt(yearAmount);
  if (isNaN(monthAmount))
    this.MonthAmount = 0;
  else
    this.MonthAmount = parseInt(monthAmount);
  if (isNaN(dayAmount))
    this.DayAmount = 0;
  else
    this.DayAmount = parseInt(dayAmount);
  this.VaccTitle = vaccTitle;
  this.VaccMsg = vaccMsg;
  this.VaccDate = function (oBirthday) {
    return DateAdd(oBirthday, this.YearAmount, this.MonthAmount, this.DayAmount);
  }
}
</SCRIPT><html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Centers for Disease Control,R.O.C.(Taiwan)
				─ Privacy Policy</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="Title" content="Centers for Disease Control,R.O.C.(Taiwan)"/>
<meta name="Keywords" content="Centers for Disease Control,R.O.C.(Taiwan)"/>
<link rel="stylesheet" type="text/css" href="GIPDSD/xslGip/xslExport/51/1/css/common.css&#xA;					">
</link>
<script type="text/javascript" src="GIPDSD/xslGip/xslExport/51/1/js/multimenu.js">　
				</script>
<script type="text/javascript" src="js/ga.js">
</script> 				  
				<noscript>
				<style type="text/css">
				<!--
				.inaccesible li ul {
				 display: block;
				}
				.vertical li ul {
				 margin-top: -1px;
				 margin-left: 0px;
				 display: block;
				 position: relative;
				}
				.menubg ul {
				 border-top-width: 1px;
				 border-top-style: solid;
				 border-top-color: #A6C5CE;
				 margin-bottom: 0px;
				}
				-->
				</style>
				</noscript>

				</head>
<body>
<div class="wrapper">
<div class="header">
<div class="accesskey"><a href="#" title="Top Area" accesskey="U">:::</a></div>
<h1>
<a href="mp.asp?mp=5"><img alt="Centers for Disease Control,R.O.C.(Taiwan)" src="GIPDSD/xslGip/xslExport/51/1/images/header_logo.gif"></img>
</a>
</h1>
<div class="nav">
<ul>
<li><a href="dp.asp?mp=5">Home</a></li>
<li><a href="ct.asp?xItem=23129&CtNode=2343&mp=5">RSS</a></li>
<li><a href="sitemap.asp?mp=5">Sitemap</a></li>
<li><a href="ct.asp?xItem=3053&CtNode=1474&mp=5">Bilingual Glossary</a></li>
<li><a href="dp.asp?mp=1">中文版</a></li>
</ul>
</div>
<div class="search">
<form method="get" action="http://www.google.com/search">
<input onfocus="this.value=''" value="" type="text" name="q" size="10" maxlength="255"/>
<input type="hidden" name="sitesearch" value="www.cdc.gov.tw"/>
<input name="" type="image" src="images/google.gif" alt="Google Search" class="btn2"/>
</form>
</div>
</div>
<div class="area"> 
					Date ：2010/7/30</div>
<table class="layout" summary="layout table">
<tr>
<td class="left">
<div class="accesskey"><a href="#" accesskey="L" title="左方導覽區塊">
						 :::
					</a></div>
<div class="mlmenu menubg inaccesible arrow">
<h2>CDC Menu</h2>
<ul>
<li><a title="NEWS" href="np.asp?ctNode=959&amp;mp=5">NEWS</a><ul>
<li><a title="Press Releases" href="lp.asp?ctNode=960&amp;CtUnit=371&amp;BaseDSD=7&amp;mp=5">Press Releases</a></li>
</ul>
</li>
<li><a title="Health topics" href="np.asp?ctNode=919&amp;mp=5">Health topics</a><ul>
<li><a title="Communicable Diseases &amp; Prevention " href="lp.asp?ctNode=920&amp;CtUnit=339&amp;BaseDSD=7&amp;mp=5">Communicable Diseases & Prevention </a></li>
<li><a title="Travelers' Health " href="lp.asp?ctNode=926&amp;CtUnit=344&amp;BaseDSD=7&amp;mp=5">Travelers' Health </a></li>
<li><a title="Quarantine " href="np.asp?ctNode=921&amp;mp=5">Quarantine </a><ul>
<li><a title="International Ports Quarantine Activities" href="np.asp?ctNode=1899&amp;mp=5">International Ports Quarantine Activities</a><ul>
<li><a title="Background" href="np.asp?ctNode=1900&amp;CtUnit=340&amp;BaseDSD=7&amp;mp=5">Background</a></li>
<li><a title="Objectives" href="np.asp?ctNode=1902&amp;CtUnit=1077&amp;BaseDSD=7&amp;mp=5">Objectives</a></li>
<li><a title="Strategies" href="np.asp?ctNode=1903&amp;CtUnit=1078&amp;BaseDSD=7&amp;mp=5">Strategies</a></li>
<li><a title="Laws and Regulations " href="lp.asp?ctNode=1901&amp;CtUnit=341&amp;BaseDSD=7&amp;mp=5">Laws and Regulations </a></li>
</ul>
</li>
<li><a title="Biological Materials Export and Import" href="lp.asp?ctNode=924&amp;CtUnit=342&amp;BaseDSD=7&amp;mp=5">Biological Materials Export and Import</a></li>
</ul>
</li>
<li><a title="Alien Workers Health " href="lp.asp?ctNode=925&amp;CtUnit=343&amp;BaseDSD=7&amp;mp=5">Alien Workers Health </a></li>
<li><a title="Infection control  " href="lp.asp?ctNode=928&amp;CtUnit=346&amp;BaseDSD=7&amp;mp=5">Infection control  </a></li>
<li><a title="Vaccine-Preventable Diseases Control " href="lp.asp?ctNode=927&amp;CtUnit=345&amp;BaseDSD=7&amp;mp=5">Vaccine-Preventable Diseases Control </a></li>
</ul>
</li>
<li><a title="Programs &amp; Campaigns" href="np.asp?ctNode=929&amp;mp=5">Programs & Campaigns</a><ul>
<li><a title="Policy Program " href="lp.asp?ctNode=930&amp;CtUnit=347&amp;BaseDSD=7&amp;mp=5">Policy Program </a></li>
<li><a title="Communicable Disease Control Program " href="lp.asp?ctNode=931&amp;CtUnit=348&amp;BaseDSD=7&amp;mp=5">Communicable Disease Control Program </a></li>
<li><a title="Research &amp; Development" href="lp.asp?ctNode=932&amp;CtUnit=349&amp;BaseDSD=7&amp;mp=5">Research & Development</a></li>
<li><a title="Stop TB Special Project " href="lp.asp?ctNode=934&amp;CtUnit=351&amp;BaseDSD=7&amp;mp=5">Stop TB Special Project </a></li>
<li><a title="Pandemic Influenza Preparedness Program " href="lp.asp?ctNode=933&amp;CtUnit=350&amp;BaseDSD=7&amp;mp=5">Pandemic Influenza Preparedness Program </a></li>
<li><a title="Preparedness and Response " href="lp.asp?ctNode=935&amp;CtUnit=352&amp;BaseDSD=7&amp;mp=5">Preparedness and Response </a></li>
<li><a title="Field Epidemiology Training Program" href="np.asp?ctNode=2487&amp;mp=5">Field Epidemiology Training Program</a><ul>
<li><a title="Field Epidemiology Training Program" href="np.asp?ctNode=2488&amp;CtUnit=353&amp;BaseDSD=7&amp;mp=5">Field Epidemiology Training Program</a></li>
<li><a title="TEPHINET Conference Abstracts" href="lp.asp?ctNode=2506&amp;CtUnit=1442&amp;BaseDSD=7&amp;mp=5">TEPHINET Conference Abstracts</a></li>
</ul>
</li>
<li><a title="Abstract of Technology Project" href="/qp.asp?CtNode=1781&CtUnit=933&BaseDSD=32&mp=5">Abstract of Technology Project</a></li>
</ul>
</li>
<li><a title="International Cooperation" href="np.asp?ctNode=941&amp;mp=5">International Cooperation</a><ul>
<li><a title="Taiwan IHR National Focal Point Contact Information" href="np.asp?ctNode=1643&amp;CtUnit=881&amp;BaseDSD=7&amp;mp=5">Taiwan IHR National Focal Point Contact Information</a></li>
<li><a title="International Cooperation " href="lp.asp?ctNode=942&amp;CtUnit=357&amp;BaseDSD=7&amp;mp=5">International Cooperation </a></li>
<li><a title="International Conference " href="lp.asp?ctNode=943&amp;CtUnit=358&amp;BaseDSD=7&amp;mp=5">International Conference </a></li>
<li><a title="APEC Related Events " href="lp.asp?ctNode=944&amp;CtUnit=359&amp;BaseDSD=7&amp;mp=5">APEC Related Events </a></li>
<li><a title="Foreign Visitors " href="lp.asp?ctNode=945&amp;CtUnit=360&amp;BaseDSD=7&amp;mp=5">Foreign Visitors </a></li>
<li><a title="Relative Resources " href="lp.asp?ctNode=946&amp;CtUnit=361&amp;BaseDSD=7&amp;mp=5">Relative Resources </a></li>
</ul>
</li>
<li><a title="Statistics &amp; Analysis" href="np.asp?ctNode=947&amp;mp=5">Statistics & Analysis</a><ul>
<li><a title="Statistics of HIV/AIDS " href="np.asp?ctNode=949&amp;CtUnit=363&amp;BaseDSD=7&amp;mp=5">Statistics of HIV/AIDS </a></li>
<li><a title="Surveillance System " href="lp.asp?ctNode=948&amp;CtUnit=362&amp;BaseDSD=7&amp;mp=5">Surveillance System </a></li>
<li><a title="Disease Surveillance Express" href="lp.asp?ctNode=2268&amp;CtUnit=1288&amp;BaseDSD=7&amp;mp=5">Disease Surveillance Express</a></li>
</ul>
</li>
<li><a title="Publication" href="np.asp?ctNode=951&amp;mp=5">Publication</a><ul>
<li><a title="Periodicals " href="np.asp?ctNode=2071&amp;mp=5">Periodicals </a><ul>
<li><a title="Epidemiology Bulletin" href="http://teb.cdc.gov.tw/en">Epidemiology Bulletin</a></li>
<li><a title="CDC Annual Report" href="lp.asp?ctNode=2073&amp;CtUnit=1140&amp;BaseDSD=31&amp;mp=5">CDC Annual Report</a></li>
<li><a title="Statistics of communicable diseases and surveillance report in Taiwan-" href="lp.asp?ctNode=2075&amp;CtUnit=1142&amp;BaseDSD=31&amp;mp=5">Statistics of communicable diseases and surveillance report in Taiwan-</a></li>
<li><a title="Statistics of communicable diseases and surveillance report" href="lp.asp?ctNode=2076&amp;CtUnit=1144&amp;BaseDSD=31&amp;mp=5">Statistics of communicable diseases and surveillance report</a></li>
</ul>
</li>
<li><a title="Books" href="lp.asp?ctNode=2077&amp;CtUnit=1145&amp;BaseDSD=31&amp;mp=5">Books</a></li>
<li><a title="Research publications" href="/np.asp?ctNode=1782&mp=5">Research publications</a></li>
<li><a title="Publications of Vaccine Center " href="np.asp?ctNode=955&amp;CtUnit=368&amp;BaseDSD=7&amp;mp=5">Publications of Vaccine Center </a></li>
</ul>
</li>
<li><a title="Application form" href="lp.asp?ctNode=957&amp;CtUnit=370&amp;BaseDSD=7&amp;mp=5">Application form</a></li>
<li><a target="_blank" title="NHCC, Open New Window" href="/nhcc/en/mp.html">NHCC</a></li>
</ul>
<div class="menufooter"></div>
</div>
<div class="ad">
<ul class="body1">
<li><a target="_blank" href="http://flu.cdc.gov.tw/np.asp?ctNode=1348&mp=151"><img border="0" alt="Influenza Express" src="/public/MMO/EngBanner/972217393758.jpg"></a></li>
<li><a target="_blank" href="/np.asp?ctNode=2051&mp=5"><img border="0" alt="Weekly Report of Enterovirus Infection" src="/public/MMO/EngBanner/852213553658.jpg"></a></li>
<li><a target="_blank" href="/ct.asp?xItem=6150&amp;CtNode=1643&amp;mp=5"><img border="0" alt="Taiwan IHR National Focal Point" src="/public/MMO/EngBanner/7121311434358.gif"></a></li>
<li><a target="_blank" href="/sp.asp?xdurl=mailbox/email.asp&mp=5"><img border="0" alt="The Director's Mailbox" src="/public/MMO/EngBanner/710199522053.gif"></a></li>
</ul>
<div class="foot"></div>
</div>
</td>
<td class="center">
<div class="accesskey">
<a href="#" title="Center area" accesskey="C">:::</a>
</div>
<div class="path">You are here: : 
			<a href="mp.asp?mp=5">Home</a>
				&gt;
				<a href="np.asp?ctNode=1488&mp=5">Privacy Policy</a></div>
<ul class="select">
<li><a href="fp.asp?xItem=5601&CtNode=1488&mp=5&fpage=cp" title="Print">Print</a></li>
<li><a href="form.asp?xItem=5601&CtNode=1488&mp=5&fpage=cp" title="Forward">Forward</a></li>
<li><a href="javascript:history.back();">Go Back</a><noscript>回上頁請按alt+Left鍵</noscript>
</li>
<li></li>
</ul>
<h3>Privacy Policy</h3>
<h4>Privacy Policy</h4>
<div class="contents">
<div class="data">Source: 疾病管制局 CDC<br>Date: 2007/10/17</div>
<p>Welcome to the website of the Centers for Disease Control, the Executive Yuan! To set your mind at ease as you use the services and information of this site, we would like first to explain our policy on the protection of your privacy rights. To ensure your rights, please carefully read the following: <BR/> 1.Scope of the Policy <P>The Policy governs how this site processes the individual personal data collected while you are visiting the site. The Policy does not apply to related web links and extends only to personnel entrusted by this site and to those involved in its management.<BR/> <BR/> 2.Data Collection and Use<P>In order to offer you the best possible interactive service, you may be asked to provide and/or allow some personal information to be collected as follows:<P>When you use the interactive function of the customer service e-mail box or the questionnaire survey form, information you provide, like your name, e-mail address, contact information and length of use, may be retained. When you are browsing, the server may automatically make a record of your activity, including the IP address of the equipment you use to access the Internet, the length of time you spend at the site, what browser you use and the data you have browsed and accessed. We use this information as reference material to further develop our website services, and the information is for internal use only. Under no circumstances is it made available to the outside. In order to provide the best service, we may compile and analyze the content of questionnaire surveys. In addition to use in internal studies, the statistics derived from these analyses and the analytical commentary may be made public in cases where we deem this necessary, but such information will not involve data on specific individuals. Unless we receive your agreement or are directed by special legal regulations, this site will under no circumstances make your personal data available to a third party or use these data for a purpose other than that for which they were collected. <BR/> <BR/> 3.Data Protection <P>Our sites computer mainframe is equipped with firewall, anti-virus and other information security applications, and we have taken all necessary information security measures. In addition, we have added very strict measures to protect the site itself and your personal information. Your personal information may be accessed only through authorized personnel. All personnel who process this data have signed a secrecy agreement. If anyone breaks this agreement, he or she will be punished to the full extent of the relevant laws. If for business reasons, it becomes necessary to entrust the provision of this service to a related office of this Department, this site will strictly require that it honor the obligations of the secrecy agreement and will adopt the necessary review procedures to assure that this obligation is indeed carried out. <BR/> <BR/> 4.Related Website Links <P>Our web page provides links to other websites, and you can select these websites through our links. However, our sites policy on the protection of privacy rights does not apply to the linked sites. You must consult the linked site for information on their policy. <BR/> <BR/> 5.Use of Cookies<P>To provide you the best possible service, we may download our Cookie into your computer for future use. If you do not wish to accept this Cookie, you can select the high security level on your browser, which will enable you to reject it. However, this may prevent you from using some functions of our site normally. <BR/> <BR/> 6.Policy Revisions<P>This sites policy on the protection of privacy rights will be revised as circumstances demand, and such revisions will be published on the site.</p>
</div>
<div class="top"><a href="#"><img alt="Top" width="41" height="16" border="0" src="GIPDSD/xslGip/xslExport/51/1/images/top01.gif"></a></div>
<table summary="layout table" class="clear">
<tr>
<td class="leftblock">
<div id="zone.content121"></div>
</td>
<td class="rightblock">
<div id="zone.content122"></div>
</td>
</tr>
</table>
<table summary="layout table" class="clear">
<tr>
<td class="col3block">
<div id="zone.content131"></div>
</td>
<td class="col3block">
<div id="zone.content132"></div>
</td>
<td class="col3block">
<div id="zone.content133"></div>
</td>
</tr>
</table>
<div id="zone.content21"></div>
<table summary="layout table" class="clear">
<tr>
<td class="leftblock">
<div id="zone.content221"></div>
</td>
<td class="rightblock">
<div id="zone.content222"></div>
</td>
</tr>
</table>
<table summary="layout table" class="clear">
<tr>
<td class="col3block">
<div id="zone.content231"></div>
</td>
<td class="col3block">
<div id="zone.content232"></div>
</td>
<td class="col3block">
<div id="zone.content233"></div>
</td>
</tr>
</table>
<div id="zone.content31"></div>
<table summary="layout table" class="clear">
<tr>
<td class="leftblock">
<div id="zone.content321"></div>
</td>
<td class="rightblock">
<div id="zone.content322"></div>
</td>
</tr>
</table>
<table summary="layout table" class="clear">
<tr>
<td class="col3block">
<div id="zone.content331"></div>
</td>
<td class="col3block">
<div id="zone.content332"></div>
</td>
<td class="col3block">
<div id="zone.content333"></div>
</td>
</tr>
</table>
</td>
<td class="rightbg hidden">
<div class="side">
<div class="accesskey"><a href="#" title="right area" accesskey="R">:::</a></div>
<div id="zone.SideBarRight"></div>
</div>
</td>
</tr>
</table>
<div class="footer">
<div class="logo">
<img alt="cdc" src="GIPDSD/xslGip/xslExport/51/1/images/footer_logo.gif">
</img>
</div>
<div class="a1">
<a href="http://www.webguide.nat.gov.tw/enable.jsp?category=20060220000157" alt="通過A+等級無障礙頁面檢測" target="_blank"><img alt="aplus" border="0" src="GIPDSD/xslGip/xslExport/51/1/images/aplus.jpg ">
</img></a>
</div>  <span class="link"><a href="/ct.asp?xItem=5601&CtNode=1488&mp=5">Privacy Policy </a> | <a href="/ct.asp?xItem=5602&CtNode=1489&mp=5">Information Security Policy</a></span><br>
Centers for Disease Control , R.O.C.(Taiwan)  Copyright &copy; 2008 All right reserved <br>
No.6, Linsen S. Rd., Jhongjheng District, Taipei City 10050, Taiwan (R.O.C.) TEL:02-23959825.<script type="text/javascript">
			var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
			document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
			</script><script type="text/javascript">
			var pageTracker = _gat._getTracker("UA-4716909-1");
			pageTracker._initData();
			pageTracker._trackPageview();
			</script></div>
</div>
</body>
</html>
