Hi to every one. i hope some one here can help me with this..

i have this btn that open a search page html.

on (release, keyPress "<Enter>")
{
if (the_text != "" && the_text != undefined)
{
getURL("http://comunicare-energia.com/component/search/?searchword="+the_text+"&ordering=newest&searchphr ase=all&limit=20&areas[0]=flippingbook", the_target, "GET");
}
}



what i need is that btn to open as a Pop-Up window...

i try this:


getURL("javascript:window.open('pagina.html','tito lo','width=400,height=300');void(0);");

on (release, keyPress "<Enter>")
{
if (the_text != "" && the_text != undefined)
{
getURL("javascript:window.open('http://comunicare-energia.com/component/search/?searchword='+the_text+'&ordering=newest&searchphr ase=all&limit=20&areas[0]=flippingbook', the_target, 'GET');void(0);");
}
}


but not work.