"alberta soranzo" wrote[color=blue]
> i'm trying to send a mass-email[/color]
Oh no!
[color=blue]
> using microsoft's list builder
> (
http://www.bcentral.com/products/lb/default.asp).
> my html file is clean and the javascript links work fine in all
> browsers.[/color]
Javascript in email is not a good idea. According to conservative hearsay
estimates, 70% of users have script turned off in their email client. If
there are a few more like you, the other 30% will follow shortly.
[color=blue]
> when the emails are received though, clicking on the links opens two
> browser windos: one --on top -- displays the content correctly. the
> other one - always on the bottom -- displays "[object]".
> is there something i should change in the links to make them work in
> outlook/mail/entourage?[/color]
What is not working in the current situation? I assume that this "[object]"
bothers you, but you don't say what this second window should display.
[color=blue]
> thanks,
> alberta
>
> the links are all like this:
>
>[/color]
javascript
:seriesdetails=open('http://www.cinema.ucla.edu/calendar/calendard
etails.aspx?details_type=2&id=123','_blank','menub ar=no,scrollbars=yes,resiz
able=yes,width=600,height=450');seriesdetails.focu s();
This is in the "href" of an "a", right? See
http://www.jibbering.com/faq/#FAQ4_24
What happens is the variable "seriesdetails" is returned from the javascript
evaluation, and the browser tries to display it. This the the "object" that
you see. If you add "void('');" after the focus command, any return value is
suppressed.
BUt to take a step back, what is wrong with a normal and ordinary link, like
<a
href="http://www.cinema.ucla.edu/calendar/calendardetails.aspx?details_type=
2&id=123">
Apart from the window size which would be the reader's current or favourite
window size instead of your hardcoded 600x450 (how does that compare on
800px resolution or 1600 resolution), everything would work the same.
I must be crazy helping people script in email.
Ivo