Вот как я делал это в FF3
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><!--debug="true" -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Файл в base64</title>
<script type="text/javascript">
function Послать(что){
var Файл = document.getElementById("fileUp").files[0]
var Содержимое = document.getElementById("Содержимое")
Содержимое.appendChild(document.createTextNode(Файл.getAsDataURL()))
//alert("Уж послала так послала ..." + Файл)
}
</script>
</head>
<body>
<input type="file" class="upload" id="fileUp"> </input>
<input type="button" value="Отправить" onclick="Послать(this)"> </input>
<p id="Содержимое">
</p>
</body>
</html>