line 119 in filepost.asp is incorrect is as shown
Response.Write "<script language=javascript>var OxO6dd4=["\x22 \x26 FilePath \x26\x22/\x22 \x26 File.FileName \x26 \x22","\x22\x26FilePath\x26\x22"]; parent.UploadSaved(OxO6dd4[0x0],OxO6dd4[0x1]) ;</script>"
it should be
Response.Write "<script language=javascript>var OxO6dd4=['\x22 \x26 FilePath \x26\x22/\x22 \x26 File.FileName \x26 \x22','\x22\x26FilePath\x26\x22']; parent.UploadSaved(OxO6dd4[0x0],OxO6dd4[0x1]) ;</script>"
or maybe
Response.Write "<script language=javascript>var OxO6dd4=[""\x22 \x26 FilePath \x26\x22/\x22 \x26 File.FileName \x26 \x22"",""\x22\x26FilePath\x26\x22""]; parent.UploadSaved(OxO6dd4[0x0],OxO6dd4[0x1]) ;</script>"
RC