diff --git a/Repositories/Maps/css_map.js b/Repositories/Maps/css_map.js index 97b800b..4b06c8f 100755 --- a/Repositories/Maps/css_map.js +++ b/Repositories/Maps/css_map.js @@ -1,11 +1,12 @@ // Global XMLHttpRequest object. var httpRequest = new XMLHttpRequest(); -function load( startMillis, numEntries, showOnly ) +function load( startMillis, numEntries, showOnly, eprintIDs ) { // Open the request. Setting the third argument to TRUE makes the // request asynchronous, i.e., the browser doesn't wait. - httpRequest.open('GET', 'css_map.pl?width=1024&height=520&top=' + numEntries + "&show=" + showOnly, true); + httpRequest.open('GET', 'css_map.pl?width=1024&height=520&top=' + numEntries + + "&show=" + showOnly + "&eprint=" + eprintIDs, true); // When we hear something from the server, call the handleResponse() // function to find out what happened.