function showartikel(URL){
    window.open(URL, 'Originalmeldung', 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,copyhistory=1,width=440,height=550')
}

function neuesfenster(URL){
    window.open(URL, 'Information', 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,copyhistory=1,width=500,height=440')
}

function neuesfenster2(URL){
    window.open(URL, 'Information', 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,copyhistory=1,width=600,height=500')
}

function hilfefenster(URL) {
    window.open(URL, 'hilfe', 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,copyhistory=1,width=350,height=510')
}

function neuesfensterPDF(URL) {
    var breite = screen.width-12;
    var hoehe = screen.height-60;
    window.open(URL,'Checkliste','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,copyhistory=0,width='+breite+',height='+hoehe+',top=0,left=0');
}

function picfenster(URL, breite, hoehe) {
    var scrollbars = 1;
    if (breite > screen.availWidth) {
        breite = screen.availWidth;
        scrollbars = 1;
    }
    if (hoehe > screen.availHeight) {
        hoehe = screen.availHeight;
        scrollbars = 1;
    }
//    window.open(URL,'Clipping','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,copyhistory=0,width='+breite+',height='+hoehe+',top=0,left=0');
//if (scrollbars == 0) {
//    window.open(URL,'Clipping','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,copyhistory=0,width='+breite+',height='+hoehe+',top=0,left=0');
//} else {
//    window.open(URL,'Clipping','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,copyhistory=0,width='+breite+',height='+hoehe+',top=0,left=0');
//}
	if(document.activeElement.innerHTML == 'Onlineartikel'){
		URL		=	"/clipping-mappe/displayOnlineClipping.php?url="+URL
	}
    window.open(URL,'Clipping','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars='+scrollbars+',resizable=1,copyhistory=0,width='+breite+',height='+hoehe+',top=0,left=0');
}

function picfenster2(URL, breite, hoehe) {
    var scrollbars = 1;
    if (breite > screen.availWidth) {
        breite = screen.availWidth;
        scrollbars = 1;
    }
    if (hoehe > screen.availHeight) {
        hoehe = screen.availHeight;
        scrollbars = 1;
    }
//    window.open(URL,'Clipping','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,copyhistory=0,width='+breite+',height='+hoehe+',top=0,left=0');
//if (scrollbars == 0) {
//    window.open(URL,'Clipping','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,copyhistory=0,width='+breite+',height='+hoehe+',top=0,left=0');
//} else {
//    window.open(URL,'Clipping','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,copyhistory=0,width='+breite+',height='+hoehe+',top=0,left=0');
//}
	if(document.activeElement.innerHTML == 'Onlineartikel'){
		URL		=	"/clipping-mappe/displayOnlineClipping.php?url="+URL
	}
    window.open(URL,'Clipping','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars='+scrollbars+',resizable=1,copyhistory=0,width='+breite+',height='+hoehe+',top=0,left=0');
}


function popup(URL, breite, hoehe){
    window.open(URL, 'Aktion', 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,copyhistory=1,width='+breite+',height='+hoehe+',top=0,left=0');
    self.focus();
}

function open_aktionsfenster(ziel, breite, hoehe) {
    if (document.cookie) {
    } else {
        warten = self.setTimeout("popup(ziel, breite, hoehe)",3000);
        var ablauf = new Date();
//        var inEinemTag = ablauf.getTime() + (1 * 24 * 60 * 60 * 1000);
        var inEinemTag = ablauf.getTime() + (60 * 60 * 1000);
        ablauf.setTime(inEinemTag);
        document.cookie = "Name=PRDienst_StartPopUp; expires=" + ablauf.toGMTString();
    }
}

function openPopupWindow(URL, breite, hoehe, background) {
    window.open(URL, 'Aktion', 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,copyhistory=1,width='+breite+',height='+hoehe+',top=0,left=0');
    if (background == 1) {
        self.focus();
    }
}

function multipicfenster(projekt, clippingnummer, max_breite, max_hoehe, max_index, pictyp) {
    var scrollbars = 1;
    if (max_breite > screen.availWidth) {
        max_breite = screen.availWidth;
        scrollbars = 1;
    }
    if (max_hoehe > screen.availHeight) {
        max_hoehe = screen.availHeight;
        scrollbars = 1;
    }
    URL = '/cgi-bin/auftrags_anzeige/clipping_anzeige.pl?i=1&max_i='+max_index+'&pro='+projekt+'&clip='+clippingnummer+'&typ='+pictyp;
    window.open(URL,'Clipping','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars='+scrollbars+',resizable=1,copyhistory=0,width='+max_breite+',height='+max_hoehe+',top=0,left=0');
}

