/* ----------------------------
 Author:		
 Date:			
 Version:		

 Description:	
	
 ----------------------------- */

function ChangeImage(srcURL)
{	
	var tempSrc = srcURL;

		
	tempSrc = tempSrc.replace('/Thumbs', '');

	
	tempSrc = tempSrc.replace('_thm', '');
	

	document.getElementById('imgPreview').src = tempSrc;
}