JavaScript help ! memory loss :-(

I just found out the Chromeless window is dead with IE6 SP1… now I want a regular popup with javascript…just can’t remember how to do it… what’s the code I have to add to my <a href> tag ??

Thanks

Put this in your AS for the open button in flash:

on (release) {
getURL("javascript:openNewWindow(‘chargers.html’,‘CHARGERS’,‘height=543,width=450,toolbar=no,scrollbars=no’);
", “_self”);
}

Put this in the HTML for the page your swf resides on:


<script language="JavaScript">
    function openNewWindow(URLtoOpen, windowName, windowFeatures) {
        newWindow=window.open(URLtoOpen, windowName, windowFeatures);
    }
</script>

Peace