/**
 * Opens up a download window which redirects to the file to download. This
 * is to get around IE7's downloading blocking.
 * @param linkObject The link object this function was called from.
 * @param fileLocation The url of the file to download
 */
function Soda_GetFile(linkObject, fileLocation)
{
	// Open our download window
	window.open(fileLocation,'downloading','toolbar=0,location=no,directories=0,status=0, scrollbars=no,resizable=0,width=1,height=1,top=0,left=0');
	window.focus(); 
	
	// Set the link URL to our passed object - if this isn't passed we'll
	// know IE7 users have Javascript downloaded so we can work around it.
	location.href	= linkObject.href + "?dl=true";
	linkObject.href	= linkObject.href + "?dl=true";
	
	// Done
	return linkObject;
}
