Web View Action similar to @Prompt

Hi

I am looking for similar code of @ Prompt for the web i tried with JavaScript but I am new to JavaScript . I tried these two functions with internet help but not working.

function popUp(URL) {

day = new Date();

id = day.getTime();

eval(“page” + id + " = window.open(URL, ‘" + id + "’, ‘toolbar=no,scrollbars=no,location=no,statusbar=no,menubar=no,resizable=no,width=200,height=250’);");

}

function LinkUp(obj)

{

linkid=obj.options[obj.selectedIndex].value

NewWin=window.open(linkid,“win1”,config=“width=200,height=250,location=no,status=no,directories=no,toolbar=no,scrollbars=no,menubar=no,resiza ble=no,top=30,left=30”)

}

This is my Notes client view action button code. i am looking for similar function for web any help is appreciated

Choice := @Prompt([OkCancelList]:[NoSort];“Publicity Material”;“Select the type of information you wish to add for this Title.”;“”;“Press Release (scan)”:“Press Release (attach)”:“Mailing List (Code)”:“Mailing List (Scan)”:“Review”:“Reference”:“Addendum (scan)” : “Addendum (attach)”);

@If(Choice = “Press Release (scan)”;@Command([Compose];“Press Release Scan”);Choice=“Press Release (attach)”;@Command([Compose];“Press Release Attach”);Choice=“Mailing List (Scan)”;@Command([Compose];“List”);Choice=“Mailing List (Code)”;@Command([Compose];“Mailing List (Code)”);Choice=“Review”;@Command([Compose];“Review”);Choice=“Reference”;@Command([Compose];“Reference”);Choice=“Addendum (attach)”;@Command([Compose];“Addendum Attach”);Choice=“Addendum (scan)”;@Command([Compose];“Addendum Scan”);“”)

Subject: Web View Action similar to @Prompt

@prompt is just like an alert in javascript if you want to have a messagebox like @prompt use alert(“input message here”)

Subject: RE: Web View Action similar to @Prompt

Not quite. That is true of @Prompt([OK]), but there are a number of @Prompt type options that cannot be duplicated by the simple JS options (alert(), confirm() and prompt()). The option the original poster was talking about is the equivalent of opening a new window containing a page with a form having a single

Subject: Web View Action similar to @Prompt

Hi Anish,

Check this out

http://www-10.lotus.com/46dom.nsf/Search?SearchView&Query=@prompt%20AND%20web&SearchOrder=0&Start=1&Count=100

HTH

Rosie