
function UkazOkno(obr, x , y) {
  temp = window.open(obr,"newwin","height="+(y)+",width="+(x)+",scrollbars=0,resizable=0");
  temp.focus();
}

function showAlfred(url, x , y) {
  temp = window.open(url,"alfred","height="+(y)+",width="+(x)+",scrollbars=1,resizable=0");
  temp.focus();
}

