// Create an IFRAME.
var iframe = document.createElement("iframe");
// Point the IFRAME to GenerateFile, with the desired attributes as arguments.
iframe.src = 'something.html';
// This makes the IFRAME invisible to the user.
iframe.style.display = 'none';
// Add the IFRAME to the page. This will trigger a request to URL.
document.body.appendChild(iframe);