function confirmDelete(filename, fileSrc)
{
	if(confirm("Are you sure you wish to delete file '" + filename + "'?"))
	{
		document.location.href = "RemoveFile.aspx?src=" + fileSrc;
	}
}