
function downloadResource(url){
	// save translations
	window.notShowPopup = true
	beforeUnload();
	// download
	doDownload(url)
}

function doDownload(url){
	var iframe = document.getElementById("downloadFrame");
	var doc = iframe.Document?iframe.Document:iframe.contentDocument;		
	var wind = doc.parentWindow?doc.parentWindow:doc.defaultView
	wind.location.replace(url);	
}