// JavaScript Document
function showImage(src, name, width, height) {
	popup = window.open(src, name, 'width='+width+',height='+height+',menubar=0,toolbar=0,status=0,scrollbars=0,resizable=1,location=0');	
  popup.document.write('<br><center><img src="'+src+'" alt="'+name+'" /></center>');
  popup.resizeTo(width+30,height+50);
	popup.document.body.style.padding = "0px";
	popup.document.body.style.margin = "0px";
	popup.focus;
}

