Script:
<style type="text/css">
.background
{background-color:Gray;
filter:alpha(opacity=60);
opacity:0.6;
}
</style>
<script type="text/javascript">1:
2: function download()
3: {
4: var iframe = document.createElement("iframe");
5: iframe.src = "GenerateFile.aspx";
6: iframe.style.display = "none";
7: document.body.appendChild(iframe);
8: }
</script>
