function email(email)
 {
  day = new Date();
  id = day.getTime();
  Width = 440;
  Height = 440;
  
  URL = "/kontakt.php?An=" + email;
 // Width = parseInt(Width) + 20;
  eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=" + Width + ",height=" + Height + "');");
 }
 
function link(link)
 {
  day = new Date();
  id = day.getTime();
  Width = 440;
  Height = 440;
  
  URL = link;
 // Width = parseInt(Width) + 20;
  eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=1,scrollbars=1,location=1,statusbar=1,menubar=1,resizable=1');");
 }

