Popup not working

I’m using dreamweave just so everyone knows, cuz I’m really lazy. If there is a way to do popups through some option in dreamweaver mx could you please tell me?
I tried to do it like some random code I found… but it didnt work

can someone go to http://www.xxviii.net/ and check out the source code… and see what’s wrong with the email link?

PUHLEASE?
thanks

Theres a few things wrong with your script that I noticed right off the bat…

<a href="mail.php" target="_blank" onClick="&quot;popup('mail.php','Mail Form','toolbar=no,location=no,status=no,menubar =no,scrollbars=no,resizable=no,width=500,height=500')&quot;">eMail</a>

That is the code you used.

First thing I noticed is you have a target to _blank. Considering you are using a pop up you need to target at all, so you can completely remove that attribute.

Second thing is that you contain both an HREF and onClick attribute. What you should do instead is remove the onClick, and use the pop up code in the HREF attribute.

Third thing I noticed is the &**quot; tags (special characters, this ones for quotes)… they should be there at all.

Fourth thing was for the window_name part you named it “Mail Form”… window names for pop ups and such must be one word, you can’t have a space or special characters. So you should change it to mailForm or something like that.

Fifth thing was after menubar you have 2 spaces before the equal sign, reduce that to 1.

Thats all I notice right off the bat. Also if you want you can check my attachment for an alternate (but similar) method.

thanks lost, ill check that out tonight
:beam: