Absolutely, you just need to do a bit of Javascript text parsing to pluck them from the URL. I use something like it to pass latitutde and longitude to my Google Maps code for http://racingcircuits.blogspot.com
Use document.location.search to get the search argument string and then parse it (i.e. look for the & and = characters) to break it onto individual arguments. J.D.