function openImg(imgFile){
	MyWindow = window.open("", "WebWizard1", "status=no,scrollbars=yes,resizable=yes,Left=100,Top=100, Height=300, Width=300");
	MyWindow.focus();
	
	MyWindow.document.open();
	MyWindow.document.writeln('<html><head><title>View Image</title></head><body onload="scale_window()" topmargin="0" leftmargin="0">');
	MyWindow.document.writeln('<form name="viewImg">');
	MyWindow.document.writeln('<a href="javascript:window.close()"><img src="' + imgFile + '" name="imgName" border="0" alt="Click to close"></a>');
	MyWindow.document.writeln('</form>');
	MyWindow.document.writeln('<script language="javascript">');
	MyWindow.document.writeln('function scale_window(){')
	MyWindow.document.writeln('var ImgHeight = viewImg.imgName.height;')
	MyWindow.document.writeln('var ImgWidth = viewImg.imgName.width;')
	MyWindow.document.writeln('if (((ImgHeight > 0) || (ImgWidth > 0)) && (ImgHeight < 500 ))')
	MyWindow.document.writeln('window.resizeTo(ImgWidth, ImgHeight + 50);')
	MyWindow.document.writeln('}');
	MyWindow.document.writeln('</' + 'script>');
	MyWindow.document.writeln('</body></html>');
	MyWindow.document.close();
}

function clickDatHang(strUrl){
	MyWindow = window.open(strUrl, "WebWizard", "status=no,scrollbars=yes,resizable=no,Left=100,Top=100, Height=400, Width=600");
	MyWindow.focus();
}

function clickViewDetailProduct(strUrl){
	MyWindow = window.open(strUrl, "WebWizard", "status=no,scrollbars=yes,resizable=no,Left=100,Top=100, Height=400, Width=600");
	MyWindow.focus();
}


