I had a similar problem and came up with the following code. I wanted to obtain basic movie information for use in creating a DVD case outer jacket. I wanted to review rottentomatoes and imdb ratings as well as google movie images. That would be 3 urls using tabs in explorer launched from the win7 command line. The batch file would be run using, for example
showmovieinfo The Hunger Games
@ECHO OFF
REM BRING UP REFERENCE MATERIAL FOR THE SUPPLIED MOVIE TITLE
IF "%1"=="" GOTO Done
SET showmovieinfo=%1
:Test
SHIFT
IF "%1"=="" GOTO Done
SET showmovieinfo=%showmovieinfo%+
FOR %%F IN (%1) DO SET showmovieinfo=%showmovieinfo%%%F
GOTO Test
:Done
SET E1=start /d explorer.exe http://www.rottentomatoes.com/search/?search=%showmovieinfo%
SET E2=start /d explorer.exe http://www.imdb.com/find?q=%showmovieinfo%
SET E3=start /d explorer.exe http://www.google.com/search?num=10"&"hl=en"&"q=FILM+%showmovieinfo%"&"um=1"&"ie=UTF-8"&"tbm=isch
%E1%
%E2%
%E3%