Javascript Help!

Hello,

Thank you in advance to everyone. I know next to nothing when it comes to coding and need some help using Javascript to handle GET variables.

I have a real estate website that has rotating images of properties where if a visitor clicks on one of the images, it will open a window and display its property data. The data is retrieved from a third party service so I’m stuck with client side scripting. My question is, how do I get this data to open within mypage.html file? It’s currently opening in a window with nothing but the property data… no navigation, no logo, etc…

I’m trying to have it open within mypage.html file in an iframe using the following:

if(qsParm[‘url’]){ document.write(“<iframe src=’” + qsParm[‘url’] + “’></iframe>); }

Not sure if this is correct but I would really appreciate any help with this. As I mentioned, I’m not a coder so if I’m missing some helpful details, please let me know. Thank you again.