Vinod Varma 8.May.12 01:52 PM a Web browser Applications Development7.0All Platforms
Hi All ,
We have an intranet website which is in Lotus Notes. On the homepage of the intranet website there is a button (Go) with a search field. When the go button is pressed it goes to the internal phone directory on the same server where the intranet is being run. I want to change the go button link to point to a different server for the phone book. But the problem i have is the go button calls a java script which is coded in the follwing way(i have taken this by viewing the source in my browser)
function FindEmployee(what)
{
window.open('http://www.applera.net/Phonebook/appdirectory.nsf/WebView?SearchView&Query=Field%20FullName%20contains%20' + escape(what), 'EmployeeSearch');
}
This is the part of the client source code which invokes the go button
I am not able to find the specified java script file so that i can change it to point to the correct server. How do i find the specified javascript file , i am also not able to find the index file which is being loaded when the intranet url is being typed in. Is it in the index.nsf should i look for this javascript file or any where else. Appreciate your help