Hi,
Not sure if this can be done or not, but here is what I would like to have happen.
I've got two javascript functions that I need combined in one button. Here is the page I need it to happen on: http://knowledgebase.acstechnologies..._kb_admins.htm
----------------
function emailSupport()
{
window.location="http://apps.acstechnologies.com/support/emailsupport/acsemailform.asp";
}
----------------
and
----------------
var browserName=navigator.appName;
if (browserName=="Netscape") {
function closynoshowsme()
{
window.opener='X';
window.open('','_parent','');
window.close();}
}
else {
if (browserName=="Microsoft Internet Explorer")
{
function closynoshowsme()
{
window.opener = "whocares";
window.close();
}
}
}
----------------
What I want to have happen is once the user clicks Email Support, the window with the two buttons closes and a new window opens going to the Email Support Page. I'd also like to have it where when the user clicks Email Admins, that it opens a new email from their email client, then the small window closes.
Can anyone help with this?
Oh, I haven't posted in a very long time, so consider me a newbie.
Thanks.
---
Brandon



Reply With Quote

Bookmarks