/**********************************************************
/	Delete File
**********************************************************/
function deleteFile( id, action, debug ){
	
	if( debug != true )
		debug = false;
		
	if( action == "" || action == undefined )
		action = "deleteFile";
	
	$.post(url, { action: action, FileID: id },
	function(data){
		if( debug )
			alert(data);
		else
			window.location = window.location;
	});
	
}// end function - deleteFile

