> Anyone know why someone using AOL 6.0 would have trouble with
> the EZSignup
> Utility?  Does AOL's version 6.0 not work with pop up java or ?
>
> I have a customer who says they click on the link to signup and
> it pops up
> that window but it is blank and there is no information or form
> to fill out.

That's our new "anti-AOL-user" feature, meant to prevent you from the
future headaches of supporting AOL newbies. :)

Seriously, it's probably a bit of JS that the new-fangled AOL browser
doesn't like. What you probably have in your mailwelc.txt file (in the web
templates) is something like this:

<script language="javascript"><!--
var Popup = null
function openPopup(x){
    if (!Popup || Popup.closed){
     Popup =
window.open('','Popup',"width=500,height=400,scrollbars=yes,resizable=yes"
);
     Popup.opener=self;
     }
    Popup.document.location.href=x;
    Popup.focus();
}//--></script>


The one potential problem spot I see there is that technically,
"document.location.href" is incorrect. Yes, all (or most) browsers are
just fine with it, but to be completely DOM-compliant, that line should
read:

    Popup.location.href=x;

Try making that change, let us know if it helps. If that doesn't work, get
with us tomorrow via the [EMAIL PROTECTED] address.

Thanks,
Ron




______________________________________________________________________
The HKSI-IMail Admin List is hosted by........ Humankind Systems, Inc.
Questions, Comments or Complain like Hell.. mailto:[EMAIL PROTECTED]
Message Archive... http://www.tallylist.com/archives/index.cfm/mlist.4
To Manage your Subscription......... http://humankindsystems.com/lists

Reply via email to