function faqPullDownChi(sectionID) {
var faqstring ='';
var profileSelect=" ";
var billSelect=" ";
var planSelect=" ";
var usageSelect=" ";
var supportSelect=" ";

if (sectionID=="profile")
	profileSelect="selected";
if (sectionID=="bill")
	billSelect="selected";
if (sectionID=="plan")	
	planSelect="selected";
if (sectionID=="usage")	
	usageSelect="selected";
if (sectionID=="support")	
	supportSelect="selected";

		
faqstring+='請選擇所需種類: ';
faqstring+='<select name="section" onChange="document.location.href = faq.section.value;" align="absmiddle">';
faqstring+='<option value="/faq/faq_my_profile_c.html" '+profileSelect+'>我的戶口資料</option>';
faqstring+='<option value="/faq/faq_my_bill_c.html" '+billSelect+'>我的電子賬單</option>';
faqstring+='<option value="/faq/faq_my_plan_c.html" '+planSelect+'>我的服務計劃</option>';
faqstring+='<option value="/faq/faq_my_usage_c.html" '+usageSelect+'>我的用量計劃</option>';
faqstring+='<option value="/faq/faq_technical_support_c.html" '+supportSelect+'>技術支援</option>';
faqstring+='</select>';
document.write(faqstring);
}

function faqPullDownEng(sectionID) {
var faqstring ='';
var profileSelect=" ";
var billSelect=" ";
var planSelect=" ";
var usageSelect=" ";
var supportSelect=" ";

if (sectionID=="profile")
	profileSelect="selected";
if (sectionID=="bill")
	billSelect="selected";
if (sectionID=="plan")	
	planSelect="selected";
if (sectionID=="usage")	
	usageSelect="selected";
if (sectionID=="support")	
	supportSelect="selected";

		
faqstring+='Please select subject: ';
faqstring+='<select name="section" onChange="document.location.href = faq.section.value;" align="absmiddle">';
faqstring+='<option value="/faq/faq_my_profile_e.html" '+profileSelect+'>My Profile</option>';
faqstring+='<option value="/faq/faq_my_bill_e.html" '+billSelect+'>My Bill</option>';
faqstring+='<option value="/faq/faq_my_plan_e.html" '+planSelect+'>My Plan</option>';
faqstring+='<option value="/faq/faq_my_usage_e.html" '+usageSelect+'>My Usage</option>';
faqstring+='<option value="/faq/faq_technical_support_e.html" '+supportSelect+'>Technical Support</option>';
faqstring+='</select>';
document.write(faqstring);
}