Save the following code as a HTML file. Open Notepad, paste the code and select File -> Save As option and enter "AVI_download_script.html" (with quotes)
<!- AVI Download workaround ->
<HTML><HEAD><TITLE> AVI Download Script </TITLE>
<SCRIPT LANGUAGE="javascript">
<!--
function createPage(aviURL)
{
document.write("<html><head>");
document.write("<BR>Click the link to download the AVI file or right-click link and select 'Save Target As' or 'Save Link As' option <P>");
document.write("<A HREF='"+aviURL+"'>Download AVI file</A>");
}
//-->
</SCRIPT></HEAD>
<BODY>
Enter AVI URL: <INPUT TYPE="TEXT" ID="URL">
<button OnClick="createPage(document.getElementById('URL').value)">Download</button>
</BODY></HTML>