//------------------------------------------------------------------
function StrTrim(s)
{
  var i,e,v,h;
  h=s.length;
  i=0;
  while(i<h && s.charAt(i)==' ') i++;
  e=i;
  i=h-1;
  while(i>0 && s.charAt(i)==' ') i--;
  v=i;
  if (e==h) return '';
  else
    if (e<v) return s.substring(e,v+1);
    else return s;
}
//------------------------------------------------------------------
function StrToWords(s)
{
  var sv,i,h;
  s=' '+StrTrim(s);
  h=s.length;
  sv='';
  for (i=1; i<h; i++)
    if (s.charAt(i)==' ')
      {
        if (s.charAt(i-1)!=' ')
          sv=sv+s.charAt(i);
      }
    else             
      sv=sv+s.charAt(i);
  return sv;
}
//------------------------------------------------------------------
function OverFo(s)
{
  window.status=s; 
  setTimeout('window.status="'+s+'"',1);
}
//------------------------------------------------------------------
function KepMutat(img,w,h,str)
{
  w=w+100;
  h=h+100;
  if (w>=screen.width) w=screen.width-50;
  if (h>=screen.height) h=screen.height-80;
  win=window.open("","win","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width="+w+",height="+h+",top=20,left=20");
  win.document.open();
  win.document.write('<html><head><title>',str,'</title></head>');
  win.document.write('<body>');
  win.document.write('<div align="center">');
  win.document.write('<img src="',img,'" hspace="5" vspace="5">');
  win.document.write('</div>');
  win.document.write('<div align="center">',str,'</div><br>');
  win.document.write('</body>');
  win.document.write('</html>');
  win.document.close();
  win.focus();
  win.resizeTo(w+10,h+30);
  return false;
}
//------------------------------------------------------------------
function KepMutatPHP(ev,kod,w,h)
{
  w=w+80;
  h=h+80;
  if (w>=screen.width) w=screen.width-50;
  if (h>=screen.height) h=screen.height-80;
  win=window.open("tanar_kepek.php?ev="+ev+"&a="+kod,"win","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width="+w+",height="+h+",top=20,left=20");
  win.focus();
  win.resizeTo(w+10,h+30);
  return false;
}
//------------------------------------------------------------------
function KepMutatPHP0(kod,w,h)
{
  w=w+80;
  h=h+80;
  if (w>=screen.width) w=screen.width-50;
  if (h>=screen.height) h=screen.height-80;
  win=window.open("tanar_kepek0.php?a="+kod,"win","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width="+w+",height="+h+",top=20,left=20");
  win.focus();
  win.resizeTo(w+10,h+30);
  return false;
}
//------------------------------------------------------------------
function OsztalyKepek(kep,w,h,okod)
{
  w=w+50;
  h=h+350;
  if (w>=screen.width) w=screen.width-50;
  if (h>=screen.height) h=screen.height-80;
  win=window.open("osztalykepek.php?okod="+okod+"&img="+kep,"win","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width="+w+",height="+h+",top=1,left=1");
  win.focus();
  win.resizeTo(w+10,h+10);
  return false;
}
//------------------------------------------------------------------

