I am trying to make a website menu with Flash, that has buttons that when pressed, create new fixed-sized pop-up windows. The website that has the flash html right now is
http://www.theugly-club.com/uglymenu.html . In the action script for each button I put : getURL(javascript:openNewWindow('
http://www.theugly-club.com/monthly','monthly','height=600,width=400,toolbar=no,scrollbars=yes')); For some reason it says that there is an error with this... I also put the following code in the
www.theugly-club.com/monthly page:
<script language="JavaScript">
function openNewWindow('
http://www.theugly-club.com/monthly', 'monthly', 'clothing','height=600,width=400,toolbar=no,
scrollbars=yes') {
newWindow=window.open('
http://www.theugly-club.com/monthly', 'monthly', 'clothing','height=600,width=400,toolbar=no,
scrollbars=yes'); }
</script>
Any suggestions?