<!--
    //create headmenu entries with dropdown menues one after another
    //the first number is the width of the column, the second is the height of each item inside the column, the boolean indicates if there's another column or if it's the last one.
    createHeaderMenuEntry("headermenu_about_acc", "document.location='#'", 120, 21, true, 
                          "History", "document.location='../history/history.htm'", 
                          "Vision", "document.location='../vision/vision.htm'", 
                          "Citizen's Charter", "document.location='../citizen_charter/citizen_charter.htm'",
                          "Our Performance",  "document.location='../ourperformance/ourperformance.asp'",
                          "Facilitation",  "document.location='../facilitation/facilitation.htm'",
                          "List of Holidays", "document.location='../holidays/holidays.htm'",
                          "Contact Us",  "document.location='../contactus/contact.htm'",
						  "Related Links",  "document.location='../related_links/related_sites.htm'");
    createHeaderMenuEntry("headermenu_profile", "document.location='#'", 120, 21, true,
                          "General Profile", "document.location='../profile/profile.htm'",
                          "Revenue Analysis", "document.location='../profile/revenue_analysis.htm'",
                          "Import Profile", "document.location='../profile/import_profile.htm'",
                          "Export Profile", "document.location='../profile/export_profile.htm'",
                          "U/A Baggage", "document.location='../profile/unaccompanied_baggage.htm'",
                          "EDI System", "document.location='../profile/edi.htm'");
    createHeaderMenuEntry("headermenu_procedure", "document.location='#'", 120, 21, true,
                          "Import Procedures", "document.location='../importprocs/importguide.htm'", 
                          "Export Procedures", "document.location='../exportprocs/exportguide.htm'", 
                          "Traveller's Information", "document.location='../traveller_info/guide.htm'");
    createHeaderMenuEntry("headermenu_new", "document.location='#'", 120, 21, true, 
                          "Latest News", "document.location='../news/news.asp'",
                          "Transmit S/B To DGFT", "document.location='../news/ShpBillToDGFT.asp'",
                          "Risk Mgmt System", "document.location='../RMS/intro.asp'",
                          "EDI Gateway", "document.location='../edi_gateway/ices_underlyingstrategy.htm'",
                          "Budget 2010-2011", "openbudget()",
                          "Digital Signature", "openURLWin('https://www.icert.gov.in')",
                          "File Doc. Online", "openURLWin('http://www.icegate.gov.in')");
    createHeaderMenuEntry("headermenu_public", "document.location='#'", 120, 21, true,
                          "E-Aution","document.location='../eauction/index.asp'",
                          "Public Notices / Notn.", "document.location='../PublicNotices/main.asp'",
                          "Facility Notices", "document.location='../FacilityNotices/main.asp'",
                          "Tenders", "document.location='../Tenders/tenderlist.asp'",
                          "Notifications", "openNewWin()",
						  "Search", "openSearch()");
    
        
    function openURLWin(sURL)
    {
        open(sURL);
    }
    function openNewWin()
    {
        open("http://www.cbec.gov.in/cae/customs/cs-act/notifications/cs-notfns-idx.htm");
    }
    
    function openSearch()
    {
        open("http://www.cbec.gov.in/cae/search-cbec.htm");
    }
    function openbudget()
    {
        open("http://indiabudget.nic.in/ub2010-11/ubmain.htm");
    }
        
    //end code for the headerMenu **************************************************************
    // 
-->