Hello, the thing i want to do is to display part of javascript code who is on server in cgi-bin... here is Source of page: HTML Code: <html><body bgcolor=white><script> parent.CharHit=45; parent.RefSB=1; parent.Game="Gekko<br>Borli<br>Beyondor<br>Grape<br>Agamennon<br>bibee1<br>Besch<br>durial<br>"; parent.SBMode=0; parent.RefSB=1; parent.Cht=""; document.write("Load Stats<br>"); parent.Obj.length=0; parent.IList=""; parent.InputLine=""; parent.StartZ=parent.CharZ; parent.RefDItems=1; parent.CStamp=1217203673;parent.EStamp=1217203613;parent.SResults=""; if (parent.CVer!="v9.0q-Alpha") { parent.SResults="Off"; parent.LErr="14"; } parent.GotStats=1; var today = new Date(); var expire = new Date(); expire.setTime(today.getTime()+21600000); document.cookie="on=durial; expires="+expire.toGMTString()+";"; </script></body></html> HTML: I want to use document write, to write what values "parent.Game" but i getting "undefined". I don't have access to server, so is there anyway to write what values parent.Game ? Because i have no access to cgi-bin of server, i think what maybe where is way to change what javascript code, by removing some pieces of code on air (visitor requesting page, server gets javascript code from cgi-bin using link, removes some code, adds document write function, and displays text).