/* Firefox での完全なローカル パスを取得します*/
function getFullPath (obj)
{
if(obj)
{
//ie
if (window.navigator.userAgent.indexOf("MSIE")>=1)
{
obj.select();
return document.selection.createRange().text;
}
//firefox
else if(window.navigator.userAgent.indexOf) ("Firefox" )>=1)
{
if(obj.files)
{
//return obj.files.item(0).getAsDataURL(); window.URL.createObjectURL(obj.files[0]);
}
}