I am using this in my flash to open a new customised window:
PHP Code:
on(release){
getURL("JavaScript:window.open('pf.html','','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=1015,height=640,left=0,top=0');");

The problem i face is, when this new window opens the current window goes blank and my entire flash file is lost. So i will have to click BACK button in my windows to reload my old swf. How to avoid this? Is it possible to open my customised new window without affecting the previous one?