You probably wouldn't be able to link directly to the elements themselves, depending on how you structure your application. The elements might not even make sense out of the context of the desktop. But what you can do is use the querystring in the URL to include some information that your Javascript file can access and show whatever is appropriate. You can add querystring parameters that say which elements to show or what to do with them. The window.location.search property contains the URL querystring starting with the question mark. You can split that up on the ampersand character and then split each of the elements up on an equal sign to get a list of the key/value pairs.