Pop-up from a Contentpane?
Anyone know if it's possible for me to launch a pop-up (for a Flash Webform) from a contentpane?
I put this into the content pane
Code:
<A HREF="javascript:popUp('./webforms/founders_form.html')">Open the Popup Window</A>
It shows up properly in the contentpane but doesn't open the form.
I put this code into the HTML page that needs to open.
Code:
<!-- Begin
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=300,height=400');");
}
// End -->
</script>