
getlinks();
if (urltable.length > 0)
{
document.write('<div align="center"><table border="0" cellpadding="0" cellspacing="0">');
  document.write('<caption><small>Hozzáadott linkek</small></caption>');

  for (i=0; i < urltable.length ; i++)
  {
 document.write("<tr>");
document.write("</tr><td width=5% align=center  ><td width=90% align=left  >"+"<a target='_blank' href='" + urltable[i].url +" '>"    + urltable[i].text + " </a><td width=5% align=center  >");
document.writeln('<td width=15% align=center  ><a href="" type=submit name= "del' + i + '" value="" onClick="deleteurl(this.name)">Törlés&nbsp;&nbsp;</a></td>');
   }
}
else
{
   document.write('<small>Nincs hozzáadott link!</small>');
}


