   if (document.layers){
      //Netscape 4 specific code
      pre = 'document.';
      post = '';
   }
   if (document.getElementById){
      //Netscape 6 specific code
      pre = 'document.getElementById("';
      post = '").style';
   }
   if (document.all){
      //IE4+ specific code
      pre = 'document.all.';
      post = '.style';
   }

var printWindow = null;
var printheader = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de-AT" lang="de-AT"><head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /></head><body>';
var printfooter = '</body></html>';

function Printmyorder() {
var width = 520;
var height = 420;
var options = "scrollbars=yes,menubar=no,toolbar=no,location=no,status=yes,resizable=yes";
var name = "printWindowName";
printWindow = window.open( "", name, "width=" + width + ",height=" + height + "," + options );

if (typeof printWindow.opener == "undefined") printWindow.opener = self;

var printableContentMarkup = document.getElementById("ordercontent").innerHTML;

printWindow.document.open("text/html")
printWindow.document.write(printheader);
printWindow.document.write(printableContentMarkup);
printWindow.document.write(printfooter);
printWindow.document.close();
printWindow.print();
printWindow.close();
}
