Index: /issm/trunk/src/m/classes/public/plot/plot_overlay.m
===================================================================
--- /issm/trunk/src/m/classes/public/plot/plot_overlay.m	(revision 2725)
+++ /issm/trunk/src/m/classes/public/plot/plot_overlay.m	(revision 2726)
@@ -24,10 +24,7 @@
 
 %radar power
-redo=1;
-if ~any(isnan(md.sarxm)) & ~any(isnan(md.sarym))
-	choice=input('This model seems to have a radar power image. Do you want to use it? (y/n)','s');
-	if strcmp(choice,'y'), redo=0; end
-end
-if redo,
+if ~any(isnan(md.sarxm)) & ~any(isnan(md.sarym)) & ~any(isnan(md.sarpwr)),
+	disp('plot_overlay info: the radar image held by the model is being used');
+else
 	t1=clock; fprintf('%s','Extracting radar image...');
 	md=radarpower(md,getfieldvalue(options,'hem','s'),xlim,ylim,getfieldvalue(options,'highres',0));
Index: /issm/trunk/src/m/classes/public/radarpower.m
===================================================================
--- /issm/trunk/src/m/classes/public/radarpower.m	(revision 2725)
+++ /issm/trunk/src/m/classes/public/radarpower.m	(revision 2726)
@@ -43,10 +43,6 @@
 
 	%Read and crop file
-	tic
 	im=imread(jpgim);
-	toc
-	tic
 	im=im(toplefty:toplefty+sizey,topleftx:topleftx+sizex);
-	toc
 	md.sarpwr=double(flipud(im));
 	md.sarxm=(x0:(x1-x0)/(size(md.sarpwr,2)-1):x1);
