Popup problem when publishing in flash 8

I’m having a problem to get this popup script to load in flash 8 when i publish it in flash 6 and mx it works fine but when i try to publish to flash 8, the hit state dislays a dead link. Anyone got some ideas on what i should change.

This is what I have in the 1st frame of my actions layer:

MovieClip.prototype.openWinCentre = function (url, winName, w, h, toolbar, location, directories, status, menubar, scrollbars, resizable) { getURL (“javascript:var myWin; if(!myWin || myWin.closed){myWin = window.open(’” + url + “’,’” + winName + “’,’” + “width=” + w + “,height=” + h + “,toolbar=” + toolbar + “,location=” + location + “,directories=” + directories + “,status=” + status + “,menubar=” + menubar + “,scrollbars=” + scrollbars + “,resizable=” + resizable + “,top=’+((screen.height/2)-(” + h/2 + “))+’,left=’+((screen.width/2)-(” + w/2 + “))+’” + “’)}else{myWin.focus();};void(0);”);}stop();

This is what I have on the button movieclip:

on (release) { address = “content/info.html”; target_winName = “webaddress”; width = 302; height = 308; toolbar = 0; location = 0; directories = 0; status = 0; menubar = 0; scrollbars = 0; resizable = 0; openWinCentre(address, target_winName, width, height, toolbar, location, directories, status, menubar, scrollbars, resizable);}