function showimg(sUrl,x,y) {

	var windowWidth = x; // width of the popup
	var windowHeight = y; // height of the popup
	var windowLeft = (screen.width / 2) - (windowWidth / 2); // center the window right to left
	var windowTop = (screen.height / 2) - (windowHeight / 2); // center the window top to bottom
	var options = 'directories=no,location=no,menubar=no,status=no,titlebar=no,toolbar=no,scrollbars=no,width='+windowWidth+',height='+windowHeight+',top='+windowTop+',left='+windowLeft+',resizeable=no';

	var win = open('',null,options);

	win.document.writeln('<html><head><title>C&amp;C Products</title>');
	win.document.writeln('<body bgcolor="#FFFFFF" leftmargin=0 topmargin=0>');
	win.document.writeln('<a href="javascript:top.close();"><img src="'+sUrl+'" width="'+x+'" height="'+y+'" border="0" hspace="0"></a>');
	win.document.writeln('</body></html>');
	win.document.close();
	win.focus();
}