﻿	function openImage(vLink, vWidth, vHeight) {
		var sLink = (typeof(vLink.href) == 'undefined') ? vLink : vLink.href;
	
		if (sLink == '') {
			return false;
		}
	
		winDef = 'location=no,menubar=no,resizable=yes,scrollbars=yes,titlebar=no,height='.concat(vHeight+2).concat(',').concat('width=').concat(vWidth+20).concat(',');
		winDef = winDef.concat('top=').concat((screen.height - vWidth)/2).concat(',');
		winDef = winDef.concat('left=').concat((screen.width - vWidth)/2);
		newwin = open('', '_blank', winDef);
	
		newwin.document.writeln('<title>Website cây cảnh - http://yeucaycanh.com</title><body topmargin="0" leftmargin="0" marginheight="0" marginwidth="0">');
		newwin.document.writeln('<center><a href="" onClick="window.close(); return false;">');
		newwin.document.writeln('<img src="', sLink, '" width="',vWidth,'" height="',vHeight,'" style="cursor: url(http://yeucaycanh.com/images/zoomout.cur), pointer;" title="Đóng cửa sổ này" alt="Close" border=0>');
		newwin.document.writeln('</a></center>');
		newwin.document.writeln('</body>');
	
		if (typeof(vLink.href) != 'undefined') {
			return false;
		}
	}

