function codeschreiben()  {
   sel = document.selection.createRange();
   window.clipboardData.setData("Text",sel.text);
}

 function markieren(mytt)
 { 
  if (navigator.appName == "Netscape")  {
      alert("Der Firefox unterstützt das Kopieren ggf. nicht!");
  } else {
      alert("Der Code wurde in die Zwischenablage kopiert.");
  }

  mytext = document.getElementById (mytt).innerText;
  window.clipboardData.setData("Text",mytext);
 }

function detail(myd)
 {
	myhtml = document.getElementById (myd).innerHTML;
      popupWindow = window.open("Codefenster.html", "", "menubar=yes,scrollbars=yes,resizable=yes,width=550,height=400,left=100,top=200");
      popupWindow.document.write(myhtml);
      popupWindow.focus();
      popupWindow.setTimeout("ende()",8000);
      
         
 }

function drucken(myd)
 {
	myhtml = document.getElementById (myd).innerHTML;
      popupWindow = window.open("", "VBa Code", "menubar=yes,scrollbars=yes,resizable=yes,width=550,height=400,left=100,top=200");
      popupWindow.document.writeln(myhtml);

      popupWindow.print();
      popupWindow.close();
         
 }

function ende()  {
    alert("Der Firefox unterstützt das Kopieren ggf. nicht!");
    popupWindow.stop();

  }

function aufklappen(myd)  {
    document.getElementById (myd).className = "vbacode_open";
}

function zuklappen(myd)  {
    document.getElementById (myd).className = "vbacode_mit";
}