///////////////////////////////////////////////////////////////////
// Copyright (c) 2001 Nebula Internet Software, LLC
///////////////////////////////////////////////////////////////////
var tries;

function downloadFile(file) {
	if(is_ie) {
		tries=0;
    	window.ie_download = window.open(file,"DOWNLOAD","width=20,height=20");
		setTimeout('ie_download.document.execCommand("SaveAs"); ie_download.close();', 1000);
	} else {
		document.location.href = file;
	}
}

function errorHandler(message,url,lineNumber) {
	if(ie_download!=null && !ie_download.closed && tries<5) {
		tries++;
		setTimeout('ie_download.document.execCommand("SaveAs"); ie_download.close();', 1000);
	} else if(ie_download!=null && !ie_download.closed) {
		ie_download.close();
		alert('Request timed out. Try again.');
	}
}

if(is_ie) {
	window.onerror = errorHandler;
}
