﻿function showPreview (imgname, imgsrc) 
{
  if (document.getElementById)
  {
	img = document.getElementById(imgname);
	if (img)
	{  		
		img.src = imgsrc;
	}
	else
		alert ("Target Image not found!");
  }
  return false;
}
