function enlargeImage (folder, file, width, height, productname) 
	{
		var enlargeLeft		= (screen.width - width) / 2;
		var enlargeTop 		= (screen.height - height) / 2; 
		var enlargeImage 	= window.open('', '', 'height='+height+', width='+width+', left='+enlargeLeft+', top='+enlargeTop+', toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no');
		
		enlargeImage.document.open();
		enlargeImage.document.write('<html>');
		enlargeImage.document.write('	<head>');
		enlargeImage.document.write('		<title>enlargeImage...</title>');
		enlargeImage.document.write('		<style type="text/css">body { color: #636363; font-family: arial, verdana; font-size: 11px; }');
		enlargeImage.document.write('								.pointer { cursor: pointer; color: #FD73D0; font-weight: bold; } </style>');
		enlargeImage.document.write('	</head>');		
		enlargeImage.document.write('	<body topmargin="0" leftmargin="0" rightmargin="0">');
		enlargeImage.document.write('		<img src="images/' + folder + '/' + file+ '" border="0"> <br>');
		enlargeImage.document.write('		<center><b>'+productname+'</b> &nbsp; &nbsp; <A onClick="javascript:window.close();" class="pointer">[x]</A></center>');
		enlargeImage.document.write('	</body>');
		enlargeImage.document.write('</html>');
		enlargeImage.document.close();
		enlargeImage.focus();
	}