pro qplot,xx,yy,psym=psym

;+
; NAME
;	qplot
; PURPOSE
;	To quicken the plotting process for simple plots
;	Defaults  
;		plot,xx,yy,/ynoz,psym=-1
; CALLING SEQUENCE
;	qplot,xx,yy
;	qplot,xx,yy,psym=2
; HISTORY
; 	Written by LWA on 15-Nov-93.
;-
;

if NOT keyword_set(psym) then psym='-1'

plot,xx,yy,/ynoz,psym=psym

end

