и ещё вопрос
почему не работает
function toSinglebyte(data)
{
var data_string='';
for(var i=0,il=data.length;i<il;i++){
var cCode=data.charCodeAt(i);
data_string+=String.fromCharCode(cCode>>>8);
data_string+=String.fromCharCode(cCode&0xff);
}
return data_string;
};
//window.location.href="data:text/plain;base64,"+btoa(toSinglebyte("qwerty"));
window.location.href="data:text/plain;charset=UTF-8;base64,"+btoa(toSinglebyte("qwertyйцукен"));