 function popup(winlink) {
   popwin=window.open(winlink,'win','height=540,width=640,scrollbars=yes,screenX=110,screenY=110,top=110,left=110,menubar=no,resizable=no,status=no');
   popwin.focus();
   }

   
   
function windowopen(linkimage) {
   //imgwidth=imgwidth+15;
   //imgheight=imgheight+55;
   win=window.open('/parts/blank.html','foo','width=450,height=550,resizable=yes');
   win.focus();
   win.document.open();
   win.document.write("<html>\n");
   win.document.write("<head>\n");
   win.document.write("<title>Papier Union</title>\n");
   win.document.write("</scr"+"ipt>\n");
   win.document.write("</head>\n");
   win.document.write("<body  leftmargin='0' topmargin='0' marginwidth='0' marginheight='0' onload='winresize();'>\n");
   win.document.write("<center>\n");
   win.document.write('<img src="'+linkimage+'" border="0" align="center">');
   win.document.write("<br><br><a href='javascript:window.self.close()' style='font-family:Arial; font-size:11px;'>Fenster schliessen</a>");
   win.document.write("</center>\n");
   win.document.write("<scr"+"ipt language='JavaScript'>\n");
   win.document.write("function winresize(){");
   win.document.write("var imgheight = (document.getElementsByTagName('img')[0].height)+100;\n")
   win.document.write("var imgwidth = (document.getElementsByTagName('img')[0].width)+30;\n");
   win.document.write(" window.resizeTo(imgwidth,imgheight);\n");
   win.document.write("}");
   win.document.write("</scr"+"ipt>\n");
   win.document.write("</body>\n");
   win.document.write("</html>");
   win.document.close();
   }

   
   
function toggle(obj){
    var divobj = 'Layer';
     for (var i = 1; i < 13; i++){	
      document.getElementById(divobj+i).style.display='none';
      }
     document.getElementById(obj).style.display = 'block';
   }

