Thanks for the link. I'm not quite that far along yet. I've got html and
.asp guys here but neither know a bit about Javascript beyond cut and paste.
I'm completely ignorant here so any help is greatly
Here is what we are using now, this opens up webmail in new window and
transparently logs them in: (each user has 2 email accounts)
<!-- <a class="nav1" href="javascript:document.email_2.submit()"> -->
<!-- <img border="0" src="images/arrowbullet.gif" width="13"
height="11"> -->
<form method="POST" style="spacing:0;padding:0;margin:0"
name="email_2" action="http://mail.domain.com:8383/login.cgi"
target="_blank">
<input type="hidden" name="page" value="login">
<input type="hidden" name="userid" [EMAIL PROTECTED]>
<input type="hidden" name="passwd" value="password">
<a class="nav1" href="javascript:document.email_2.submit()">
<img border="0" src="images/arrowbullet.gif" width="13" height="11">
user</a>
</form>
<!-- </a> -->
What I need to do is combine this with a standard Javascript open new window
with attributes, like this:
<SCRIPT LANGUAGE="JavaScript1.1">
var width = '700'
var height = '500'
var resizable = 'yes'
var scrollbars = 'yes'
var statusbar = 'no'
var windowname = 'PopUpWindow'
function PopUp(fileName)
{
// show a pop-up with the above parameters and load a page (fileName) into
it
if (!window.ThePopupWindow)
{
ThePopupWindow =
window.open(fileName,windowname,'scrollbars='+scrollbars+',status='+statusba
r+',width='+width+',height='+height+',resizable='+resizable)
ThePopupWindow.location.href = fileName;
}
else
{
if (!ThePopupWindow.closed)
{
ThePopupWindow.location.href = fileName;
ThePopupWindow.focus();
}
else
{
ThePopupWindow =
window.open('',windowname,'scrollbars='+scrollbars+',status='+statusbar+',wi
dth='+width+',height='+height+',resizable='+resizable)
ThePopupWindow.location.href = fileName;
}
}
}
</SCRIPT>
Again, the goal here is to obscure the Imail Web Messang URL as much as
possible so users must enter the client's site to get to their web
messaging.
Thanks
David
Please visit http://www.ipswitch.com/support/mailing-lists.html
to be removed from this list.
An Archive of this list is available at:
http://www.mail-archive.com/imail_forum%40list.ipswitch.com/
Please visit the Knowledge Base for answers to frequently asked
questions: http://www.ipswitch.com/support/IMail/