I’ve been tasked with rewriting the Javascript engine currently powering my customer’s internal website. While reviewing the code I’ve come across this function flvFPW1 which I do not recognize, nor can I decipher the code(my Javascript knowledge is modest at best). A Google search gives me a few hits, but most if not all page hits are from the Javascript used on that particular page. In other words, I cannot find a description for this function, even though it is obviously used by others.
Can someone here enlighten me?
Thanks / Fredrik
My own research agrees that it’s a dreamweaver extension: I found code for version 1.44 (scroll down some on this page) rather than 1.3:
Which was, of course, passed through a compressor to save bandwidth making it very hard to read. I spent a little bit of time un-obfuscating it before I realized that I could get better results by adding ‘dreamweaver’ to my search string. Doing that I was able to find some more interesting documentation:
http://www.flevooware.nl/dreamweaver/extdetails.asp?extID=8 (short description) http://satsuki.altervista.org/basibloggers/source40.txt (full script code, in italian)
In short: it’s basically just a wrapper for
window.open. Here’s the progress I made translating the code: