Below is the GetAction Fuction. I tried simply adding:

$IE.document.SelectAction.Button1.Value = "New Selected"
$IE.document.SelectAction.Button1.click()

and

$IE.document.Button1.Value = "New Selected"
$IE.document.Button1.click()


to my code, but nothing happens. Not really sure it works that way.

Code:
 
function GetAction(intSelect)
if intSelect=1 then
document.SelectAction.Button1.Value = "New Selected"
document.SelectAction.Button1.click()
elseif intSelect=2 then
document.SelectAction.Button1.Value = "Edit Selected"
document.SelectAction.Button1.click()
elseif intSelect=3 then
document.SelectAction.Button1.Value = "Delete Selected"
document.SelectAction.Button1.click()
elseif intSelect=4 then
document.SelectAction.Button1.Value = "Domain Selected"
document.SelectAction.Button1.click()
elseif intSelect=5 then
document.SelectAction.Button1.Value = "COID Selected"
document.SelectAction.Button1.click()
elseif intSelect=6 then
document.SelectAction.Button1.Value = "UserID Selected"
document.SelectAction.Button1.click()
elseif intSelect=7 then
document.SelectAction.Button1.Value = "Self Edit Selected"
document.SelectAction.Button1.click()
elseif intSelect=8 then
document.SelectAction.Button1.Value = "User Type Selected"
document.SelectAction.Button1.click()
else
end if
end function