function printarticle(articleid) {
	var Opt="toolbar=no,location=no,directories=no,menubar=no,scrollbars=yes,width=750,height=600,left=0,top=0"; 
	var linkname = "print.php?id="+articleid;
 printWindow=window.open(linkname,"printarticle",Opt); 
 printWindow.focus();
 }
 
 function writeFlash(nazwa,x,y,kolor,zmienne) {
 
   t = '<embed type="application/x-shockwave-flash" src="' + nazwa + '"';
 
   t = t + ' width="';
   t = t + x;
   t = t + '" height="';
   t = t + y;
   //t = t + '" wmode="transparent"';
   t = t + '" scale="noscale"';
   t = t + '" quality="high"';
 t = t + '" bgcolor="' + kolor + '"';
   t = t + '" flashvars="' + zmienne + '"';
   
   t = t + ' />';
      
   document.write (t);
 
}
