function InsertFile(file)
{
	if(file)
	{
		var c = document.getElementById('file');
		var b = document.getElementById('file-list-box');
		if(c && b)
		{
			c.value = file;
			b.style.display = 'none';
		}
	}
		
}

function ShowFileList()
{
	var b = document.getElementById('file-list-box');
	if(b)
	{
		b.style.display = 'block';
	}
}

function ConfirmDelete(url)
{
	if(url && confirm("Do you really want to delete this record?"))
	{
		document.location = url;
	}
}
