Open new javascript window

HI,

Have a problem to get it right with my geturl. When i link to a webpage everything works fine. The window must be 800*600, fixed size.

like this:
on (release) {
getURL(“javascript:NewWindow=window.open(‘http://www.kirupa.com’,‘newWin’,‘width=800,height=600,left=0,top=0,toolbar=No,location=No,scrollbars=No,status=No,resizable=No,fullscreen=No’);NewWindow.focus();void(0);”);
}

But I want to link to a htmlpage in my folder.

I’ve tried this but it doesn’ work at all:

on (release) {
getURL(“javascript:NewWindow=window.open(‘newpage.html’,‘newWin’,‘width=800,height=600,left=0,top=0,toolbar=No,location=No,scrollbars=No,status=No,resizable=No,fullscreen=No’);NewWindow.focus();void(0);”);
}

what do I do wrong?