Passing File Attributes from HTML to Javascript (Ajax) then to PHP

Hi,
I am trying to pass File Attributes (basically I need file name, size, type and the path) to JavaScript so that I can call PHP using Ajax, however when I am passing the value it is only sending the filename and type not the path and size.
I am not sure, i tried following ways:
<html><body>
<form name=“adminForm” action=“” method=“POST”>
<input type=“file” name=“flupload” id=“flupload”/>
<input type=“button” onclick=“transfer(flupload);” value=“Submit”/></form>
</body><script type=“text/javascript”>
function transfer(name){
alert(name);
}</script>
</html>

I also tried passing following types
flupload
flupload.Name, flupload.Type, flupload.Size
flupload.files[0]

I tested code properly here: http://jsbin.com/#/ocisey/1/edit

If any Geek has the solution then please post here.

Thanks in Advance,
Jag