
November 10th, 1999, 03:34 AM
|
|
Guest
|
|
Posts: n/a
Time spent in forums:
Reputation Power:
|
|
|
Hi!
If the name of the select box is selectVal then on the event onChange you can call a javascript function.Like this...
function checkValues()
{
//(when GHI is selected a new window is opened)
if (selectVal.selectedIndex == 2)
{
window.open("../Main.asp","testWin","scrollbars,resizable,status=yes,width=600,height=445");
}
}
when the third value is selected a new window is opened.
------------------
|