<!-- 
    // 1. Below is the code to open external windows
    function openWindow(url, name, lo, st, sc, rs, w, h) {
        if (url == 'data.jsp?service=cschat') {
            url = "http://illusionit.com/mdfchat/livehelp.php?department=1";
        }
        if (url == 'data.jsp?service=arr_dep') {
            url = "http://fares.tripcoordinator.com/planning_tools/flighttrekker.htm";
        }
        if (url == 'data.jsp?service=callback') {
            url = "http://www.formlogix.com/Manager/AppPagePublic.aspx?Param=VXNlcklkPTExNjE0LkZvcm1JZD00LlJvd0lEPS0xLkFwcE5hbWU9TVlEUkVBTUZMSUdIVC5Gb3JtTmFtZT1jYWxsYmFjay5RdWlja0xpbmtJRD0tMQ%3d%3d";
        }
        var locationbars = "location=no,";
        var statusbars = "status=no,";
        var scrollbars = "scrollbars=no,";
        var resize = "";
        if (lo)
            locationbars = "location=yes,";
        if (st)
            statusbars = "status=yes,";
        if (sc)
            scrollbars = "scrollbars=yes,";
        if (rs)
            resize = "resizable,";
        popupWin = window.open(url, name, locationbars + statusbars + scrollbars + resize + 'width=' + w +',height=' + h);
        window.name = 'opener';
    }
    
    // 2. Below is the code to bookmark this site
    function bookmark_mdf() {
        bookmarkurl="http://www.mydreamflight.com/"
        bookmarktitle="MydreamFlight- Providing Wings to Your Dream !"
        if (document.all) window.external.AddFavorite(bookmarkurl,bookmarktitle); // thiswill work for IE6 browser only!
        else if (window.sidebar) window.sidebar.addPanel(bookmarktitle, bookmarkurl,""); // Firefox !
        else if( window.opera && window.print ) return true;
    }

    // 3. Below is the code to adjust the alightment of testimonials tab on index page
    function setheight() {
        var ns4 = (document.layers);
        var ie4 = (document.all && !document.getElementById);
        var ie5 = (document.all && document.getElementById);
        var ns6 = (!document.all && document.getElementById);

        // Netscape 4
        if(ns4) {
            document.layers['leftcol1'].height= "310";
            document.layers['leftcol2'].height= "170";
        }
        // Explorer 4
        else if(ie4) {
            document.all['leftcol1'].style.height = "320";
            document.all['leftcol2'].style.height = "187";
        }
        // W3C - Explorer 5+ and Netscape 6+
        else if(ie5) {
            document.getElementById('leftcol1').style.height = "320";
            document.getElementById('leftcol2').style.height = "187";
        }
        // W3C - Explorer 5+ and Netscape 6+
        else if(ns6) {
            document.getElementById('leftcol1').style.height = "310";
            document.getElementById('leftcol2').style.height = "170";
        }
    }
    // 1. Below is the code to Launch chat window with tracker
    function LaunchMDFChat() {
        urchinTracker('/index.html/chat');
        LaunchVolusionChat(0);
    }
    // 1. Below is the code to Launch chat window with tracker
    function LaunchMDFCSChat() {
        urchinTracker('/index.html/chat');
        openWindow('data.jsp?service=cschat', 'mdfchat', '', '', '', '', 600, 400)
    }
    // 1. Below is the code to Launch callme form with tracker
    function callme() {
        urchinTracker('/index.html/callme');
        openWindow('data.jsp?service=callback', 'callback', '', '', '', '', 235, 160)
    }
-->
