function otworz(strona) { window.open(strona, '', 'height=375,width=500,top=50,left=50','status'); }

function otworzek(strona) { window.open(strona, '', 'height=280,width=415,top=50,left=50','status'); }

function HexToDec(hex) {
// glowacki(at)plocman.pl
 hex = hex.toUpperCase();
 var h = "0123456789ABCDEF";
 var dec = 0;
 var a = 0;
 for (n=hex.length; n>0; n--) {
  dec += h.indexOf(hex.charAt(n-1)) * Math.pow(16,a);
  a++;
 }
 return dec
}

function print(v) {
// glowacki(at)plocman.pl
var i=v.length/2;
 for (j=0;j<i;j++) {
  s=v.substring(j*2,(j+1)*2);
  s=HexToDec(s);
  s=unescape('%' + s.toString(16))
  document.write(s);
 }
}