//Uj ablak a kepeknek
function ujAblak(szelesseg,magassag,cim)
  {
    ablak=window.open(""+cim+"","picture","toolbar=no,directories=no,menubar=no,resizable=yes,scrollbars=yes,width="+szelesseg+",height="+magassag+"");
    ablak.document.write("<html><head><title>ArchivNet</title></head>");
    ablak.document.write("<body bgcolor='#FFFDCA' leftmargin='0' topmargin='0'>");
    ablak.document.write("<img src='"+cim+"'>");
    ablak.document.write("<center><form>");
    ablak.document.write("<input type=submit onclick='window.close()'>");
    ablak.document.write("</form></center>");
    ablak.document.write("</body></html>");
  }

//Vicctar evek linkek feltoltese
function felTolt()
  {
    document.writeln("<body bgcolor='#CCCC99' leftmargin='5' topmargin='5'>");
    document.writeln("<p><center><font style='font-weight:bold' face='Arial' size='4' color='#0000FF'>Vicctár</font></center></p>");
    for(var i=1945;i<=1989;i++)
      document.writeln("<center><a href='cikk.html#"+i+"' target='cikk'>"+i+"</a><br></center>");
    document.writeln("</body>");
  }

//Uzenetek megjelenitese
function uzen(uzenet)
  {
    alert(uzenet);
  }

//Utolso modositas datuma
function modosit()
  {
    var honapok=new Array("január","február","március","április","május","június","július","augusztus","szeptember","október","november","december");
    var napok=new Array("vasárnap","hétfő","kedd","szerda","csütörtök","péntek","szombat");
    var modosult=new Date(document.lastModified);

    document.write("<font size=-4>");
    if(modosult.getYear()<100)
      document.write("19");
    document.write(modosult.getYear()+".&nbsp;");
    document.write(honapok[modosult.getMonth()]+"&nbsp;");
    if(modosult.getDate()<10)
      document.write("0");
    document.write(modosult.getDate()+".&nbsp;");
    document.write(napok[modosult.getDay()]+"&nbsp;");
    if(modosult.getHours()<10)
      document.write("0");
    document.write(modosult.getHours()+":");
    if(modosult.getMinutes()<10)
      document.write("0");
    document.write(modosult.getMinutes());
    document.write("</font>");
  }
  
//Böngésző detektálás
  function keret()
    {
	  if(navigator.appName=="Netscape")
	    {
          document.writeln("<frameset cols='*,813,*' frameborder='0' border='0' framespacing='0' scroll='yes'>");
          document.writeln("<frame name='bal' src='empty.html' scrolling='no'>");
          document.writeln("<frame name='main' src='mains.html' scrolling='yes'>");
          document.writeln("<frame name='jobb' src='empty.html' scrolling='no'>");
          document.writeln("</frameset>");
		}
	  else if(navigator.appName=="Microsoft Internet Explorer")
	    {
          document.writeln("<frameset cols='*,813,*' frameborder='0' border='0' framespacing='0' scroll='yes'>");
          document.writeln("<frame name='bal' src='empty.html' scrolling='no'>");
          document.writeln("<frame name='main' src='main.html' scrolling='yes'>");
          document.writeln("<frame name='jobb' src='empty.html' scrolling='no'>");
          document.writeln("</frameset>");
		}
	}


