set var=%cd%
echo off
cls
echo.
echo        Get Lamp
echo.
echo Press 1 to Play Disc 1
echo Press 2 to Play Disc 2
echo.
choice /C 12 /M "Please Choose:"

if errorlevel = 2 goto disc2
if errorlevel = 1 goto disc1

:disc1
cd ..\..\..
.\exo\util\setconsole.exe /minimize
.\exo\util\VLC\vlc.exe --width="1920" "%var%\GET LAMP Disc 1.ISO" 
goto quit

:disc2
cd ..\..\..
.\exo\util\setconsole.exe /minimize
.\exo\util\VLC\vlc.exe --width="1920" "%var%\GET LAMP Disc 2.ISO" 
goto quit


:quit