/ Published in: JavaScript
shows that 2 required args to the swf are being set in JS 'swflink' contains 'referer' , 'IpAddress' arg values so they will not be undefined
Expand |
Embed | Plain Text
var tempsite = gup('src_url'); if(tempsite){ var sitelink = tempsite; var ipUrl = "vortexme.com"; } else { var sitelink=window.location.href; var ipUrl=sitelink.substring(7,sitelink.indexOf("/",7)); } var swflink="http://"+ipUrl+"/iJam/VTX000056/VTX000056.swf?referer="+sitelink+"&ver=2.0&IpAddress="+ipUrl; var so = new SWFObject(swflink, "mymovie", "200", "510", "8", "white");
Comments
Subscribe to comments
You need to login to post a comment.

see line# 12 that invokes the swf on a URL containing query string with 'referer' & 'IpAddress' . These 2 arg values are required when a swf starts up.