var urlIndex=4;
var fileNameIndex=5;
var query=document.location.search;
query=query.substring(1);
var pairs=query.split("&");
var theJs="../../includes/scripts/"+pairs[0].split("=")[1];
document.write('<script type="text/javascript" src="'+theJs+'"></script>');
var passedIndex=pairs[1].split("=")[1];
window.onload=function(){
	var theDownloadButton='<input type="button" class="yellow_button" value="I agree" onClick=\'document.location.href="'+getUrl(passedIndex)+'"\' style="width:80px;">';
	document.getElementById('download_button').innerHTML=theDownloadButton;
}
function getUrl(theIndex){
	if(datasets[theIndex][urlIndex].length>0) {
		return(datasets[theIndex][urlIndex]);
	}else{
		return("http://nytelecom.vo.llnwd.net/o15/agencies/datamine/"+datasets[theIndex][fileNameIndex]);
	}
}
