function getFilename() {
 d = new Date();
 r = Math.floor(Math.random() * 1000);
 a = r + "/" + (d.getMonth() + 1) + "-" + (d.getDate() + 1) + "_" +
     d.getHours() + ":" + d.getMinutes();
 return(a);
}
function jump() {
 location.href = "http://qwe.vc/" + getFilename();
 return false;
}

