function rast(length)
{
  chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890";
  pass = "";
  for(x=0;x<length;x++)
  {
    i = Math.floor(Math.random() * 62);
    pass += chars.charAt(i);
  }
  return pass;
}

var ptitle = document.title;
ptitle = ptitle.replace(" - Wardom.Org","");
paste = rast(16);
ref = location.href;

//document.write('<font size=3 face=verdana>&nbsp;&nbsp;<strong><a target=_blank href=http://www.internetfiles.org/download.php?id='+paste+'&referer='+ref+'>'+ptitle+' dosyaları için tıklayın</a></strong></font>');

