<!--
/*
 File		: faq_nav.js

 Purpose    : Generate the left navigation bar for Support Desk pages
 
 Functions  : 

 Modification History :
 
 Remarks    : The width of the first column must be 10 and that of the second column must be 156
            
            The following is the sample codes for including this js file
 
 	    <TABLE WIDTH="166" BORDER="0" CELLSPACING="0" CELLPADDING="0">
        <TR>
            <TD><IMG SRC="../images/common/blank.gif" WIDTH="10" HEIGHT="1" BORDER="0"></TD>
            <TD><IMG SRC="../images/common/blank.gif" WIDTH="156" HEIGHT="1" BORDER="0"></TD>
        </TR>
        <SCRIPT TYPE="text/javascript" LANGUAGE="JavaScript" SRC="[js path]/faq_nav.js"></SCRIPT>
        </TABLE>
        
 
 Version    Date            By              Description
 -----------------------------------------------------------------------
 1st        2002-05-31     Vivian Au        First Version
 -----------------------------------------------------------------------
*/


//the object for storing the url links for the flash files
    var urls = new Object;
    urls['but_faq'] = thisPath + "support/faq.htm";
    urls['but_freedialup'] = thisPath + "support/dialup.htm";

//the variable "thisSection" was declared in common.js and the corresponding html page will set the value
    var chkSection = new Object;
    chkSection[faqSection] = true;

    var but_faq_on = new Image();
    var but_faq_off = new Image();
    var but_freedialup_on = new Image();
    var but_freedialup_off = new Image();


    but_faq_on.src = '../images/common/arrow.gif';
    but_faq_off.src = '../images/common/blank.gif';
    but_freedialup_on.src = '../images/common/arrow.gif';
    but_freedialup_off.src = '../images/common/blank.gif';


    var faqSection = "";

    faqSection += genNavImageTag('but_faq', chkSection['but_faq'], false, 156, 13, 'support', '常見問題');
    faqSection += genNavImageTag('but_freedialup', chkSection['but_freedialup'], false, 156, 13, 'support', '免費撥號連接');
    


document.write(faqSection);
//-->