
    function PrintElem(elem) {
        Popup($(elem).html());
    }

    function Popup(data) {
    
        var printWindow = window.open("", "print", "height=400,width=600");
        printWindow.document.write("<html><head><title>AV Tours: print</title>");
        /*optional stylesheet*/ //printWindow.document.write('<link rel="stylesheet" href="main.css" type="text/css" />');
        printWindow.document.write("</head><body >");
        printWindow.document.write(data);
        printWindow.document.write('</body></html>');
        printWindow.document.close();
        printWindow.focus();
        printWindow.print();
        printWindow.close();
        return true;
    }



    function hideAlert() {
        var t = setTimeout("divAlert()", 3000);
    }

    function divAlert() {
        $(".aankondiging").fadeIn(2000);
    }


