I have created a custom messenger module in which i am using JS for popup , when ever user click's the person with whom he want to chat .
<a href=# onclick=""window.open('DesktopModules/JanChat/ChatWindow.aspx?FromUserId=" & Me.UserId & "&ToUserId=" & loggedInUser.User.UserID & "&Username=" & loggedInUser.User.Username & "','','width=400,height=200,scrollbars=no,toolbars=no,titlebar=no,menubar=no'); isLostFocus = 'true';"">" & loggedInUser.User.Username & "</a><br>"
I am able to see the fields(FromUserId,ToUserId, UserName) getting populated in the url of the popup window.But the problem these field are nt being taken by the listeners in the ChatWindow.aspx page.
Can any on help me out to figure out this issue. Any help will be greatly appreciated.
Thanks in advance.