
/* ------------------------------------------------------------------------------------------------------------- */
/* ADM Scheibenbogen GmbH                                                                                        */
/* ------------------------------------------------------------------------------------------------------------- */
/* © 2005 by KAYZEE, Felix Schwaiger - Kontakt: info@kayzee.de - www.kayzee.de                                   */
/* ------------------------------------------------------------------------------------------------------------- */



function neuladen() {
        window.location.reload()
}


function schliesen() {
        window.close()
}


function popup(datei) {  // Verwendung: <a href="javascript:popup('popup.php');">Popup öffnen</a>
        var width = 830;
        var height = 550;
        var popup = window.open(datei, 'POPUP', 'width=' + width + ',height=' + height+',resizable=0, scrollbars=yes, menubar=no, status=no, resizable=no');
    popup.moveTo((screen.width/2-width/2)-20, screen.height/2-height/2);
    popup.focus();
}


var upload = "";
function popup_upload(datei, name) {
        var width = 400;
        var height = 250;
        upload = window.open(datei, name, 'width=' + width + ',height=' + height+',resizable=0, scrollbars=yes, menubar=no, status=no, resizable=no');
    upload.moveTo((screen.width/2-width/2)-20, screen.height/2-height/2);
    upload.focus();
}


function file_print(datei, lang) {
        var width = 700;
        var height = 500;
        var print_show = window.open('http://www.adm-scheibenbogen.de/content/system_print.php?lang=' + lang + '&file=' + datei, 'DRUCKEN', 'width=' + width + ',height=' + height+',resizable=0, scrollbars=yes, menubar=no, status=no, resizable=no');
    print_show.moveTo((screen.width/2-width/2)-20, screen.height/2-height/2);
    print_show.focus();
}


function file_pdf(datei) {
        var width = 700;
        var height = 500;
        var pdf_show = window.open('http://www.adm-scheibenbogen.de/neu/system_pdf.php?file=' + datei, 'PDF', 'width=' + width + ',height=' + height+',resizable=0, scrollbars=yes, menubar=no, status=no, resizable=no');
    pdf_show.moveTo((screen.width/2-width/2)-20, screen.height/2-height/2);
    pdf_show.focus();
}