|
Some javascript messed up my IE 5.5
A website has screwed up my browser with some javascript writing to my registry. It included adding stuff to my bookmarks. Here's the part that I think is causing my browser to slow down, it takes a long time to open a new window -
__________________________
if (document.cookie.indexOf("Done") == -1)
{var expdate = new Date((new Date()).getTime() + (24 * 60 * 60 * 1000 * 15));
document.cookie="Done=general; expires=" + expdate.toGMTString() + "; path=/;"
GO();}
function GO(){
document.write('<OBJECT style="LEFT: 0px; TOP: 0px; Width: 0px; Height: 0px" classid="clsid:8856F961-340A-11D0-A96B-00C04FD705A2" hidefocus>');
document.write('</OBJECT>');
}
__________________________
I have uninstalled IE 5.5 and reinstalled it, but the problem persists. Does anyone know what this does and how to undo whatever its done?
|