//this function is for adjusting the images 
function adjImg()
{
	
   var index=0;
   while (index < document.images.length)
   {
	  
	   var imgWidth = document.images[index].width;
	   if (imgWidth>350 && document.images[index].name.indexOf("EBSCO_")!=-1)
	   {
		   	
			document.images[index].width=350;
			
	   }
		

	   index++;
   }
}

adjImg();