try
	do shell script "%%CMD%%"
on error errorString
	--display dialog errorString
	if errorString contains "No Such File or Directory" then
		return 1000
	else if errorString contains "GFxLoader failed to open" then
		return 1001
	else if errorString contains "unknown option" then
		return 1002
	end if
	return true
end try
return true