
/**
 * Cheep / CHarden ExtEndable Publisher
 * 
 * @copyright Copyright (C) 2008 Charden Reklam <http://charden.se>
 * @author Erik Edlund <erik(at)Charden.se>
 */

/**
 * Get the requested file as an attachment.
 */
function getAttachment(srvUrl, filename)
{
	var url = srvUrl + '/storage/' + filename;
	window.open(url, '_blank');
}

