<!--
status = 'Marcelini & Oskar';

function bildwechsel(Bildnr, Bildobjekt)
   {
      document.images[Bildnr].src = Bildobjekt;
   }



function openPic(img, title, width, height) {

   Optionen = 'dependent=yes, left=10, top=10, toolbar=0, location=0, directories=0, status=0, menubar=0, scrollbars=0, resizable=0, height='+height+', width='+width;
   neues_Fenster = window.open('','',Optionen);
   with (neues_Fenster)
      {
        document.write('<HTML><HEAD><TITLE>'+title+'</TITLE></HEAD>');
        document.write('<BODY topmargin="0" leftmargin="0"><DIV ALIGN="CENTER">');
        document.write('<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0 VALIGN="MIDDLE"><TR><TD>');
        document.write('<a href="javascript: window.close()" alt="Dieses Fenster schließen"><IMG SRC="'+img+'" WIDTH='+width+' HEIGHT='+height+' BORDER=0></a></TD>');
        document.write('</TR></TABLE></DIV></BODY></HTML>');
      }
}

function pic_popup(cat, folder, pic) {

   Optionen = 'dependent=yes, left=0, top=0, toolbar=0, location=0, directories=0, status=0, menubar=0, scrollbars=0, resizable=1';
   neues_Fenster = window.open('pic_popup.php?cat='+cat+'&dir='+folder+'&pic='+pic+'','test',Optionen)

}


function pic_change(Bildnr,Bildobjekt)
   {
      parent.document.images[Bildnr].src = Bildobjekt;
   }

function page_popup(page,width,height) {

   Optionen = 'width='+width+',height='+height+',dependent=yes,left=200,top=50,toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=0';
   neues_Fenster = window.open(page,'_blank',Optionen);

}

//-->
