
	function SelectMyIMG(obj,imgWidth,imgHeight)
	{

//		obj=obj.firstChild;
//		var ns6=(navigator.userAgent.indexOf("Gecko")!=-1)?true:false
//		if(ns6)		{
//			obj=obj.nextSibling
//		}

//		var imgSrc=obj.src.replace("_sm","");
		var imgSrc='../'+obj;

		var winImg = window.open('','','menubar=no,toolbar=no,width='+imgWidth+',height='+imgHeight);
		 if (winImg != null) winImg.document.write('<html><head><title>Показ</title></head><body bgcolor="black" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"><table cellspacing="0" cellpadding="0" border="0"><tr><td><img src="'+ imgSrc+'" border=0 width='+imgWidth+' height='+imgHeight+'></td></tr></table></body></html>')
		  else alert('No image: ' + imgSrc);
		 return false;
	}

