// only works in IE
function downloadme(x){
  myTempWindow = window.open(x,'','left=10000,screenX=10000');
  myTempWindow.document.execCommand('SaveAs','null','');
  myTempWindow.close();
}
