# phone_selfies_popup
!! This is used to create a popup that shows the enlarged selfie
!! show uses $phone_loc to determine where the picture is located
if $ARGS[0] = 'show':
if usePopUps = 1:
msg ''
else
view 'images/pc/selfies/<<$phone_loc>>/<<$ARGS[1]>>/<<$ARGS[2]>>.jpg'
end
end
!! show2 passes the location and image number
if $ARGS[0] = 'show2':
if usePopUps = 1:
msg ''
else
view '<<$ARGS[1]>><<$ARGS[2]>>.jpg'
end
end
--- phone_selfies_popup ---------------------------------