/*
Exif読み込み君0号
exifdata配列に入る内容
0:メーカー
1:機種
2:露出時間
3:F値
4:ISO
5:撮影日時
6:レンズ焦点距離
7:レンズ(無しのときもあり)
*/

function getExif(file){
	file = file.replace(blogpath,'');
	url = cgipath;
	paras = 'file=' + file;
	var msec = (new Date()).getTime();
	new Ajax.Request(url, {
		method: "post",
		parameters: paras,
		onSuccess:function(httpObj){
			exifinfo = httpObj.responseText;
		},
		onFailure:function(httpObj){}
	});
}

function debug(){
	alert(exifdata);
}