var imgObj;
function checkimg(theURL)
{
	if (typeof(imgObj) == "object"){
		if(imgObj.width!=0 &&imgObj.height!=0){
			window.showModalDialog("pop.htm", theURL, "dialogWidth:"+(imgObj.width+6)+"px; dialogHeight:"+(imgObj.height+26)+"px; status:no; directories:yes;scroll:no;Resizable=no; help:no;"  );
			//alert(theURL+":"+imgObj.width+""+imgObj.height);
		}
		else{
			setTimeout("checkimg('" + theURL + "')", 50);
		}
	}
}
function fpop(theURL) { //v2.0
	imgObj = new Image();
	imgObj.src = theURL;
	checkimg(theURL);
	  // ??
	return false;
}

//E.G. <A href="../_include/products/ce2/ce2-b.jpg" onClick="return fpop(this.href)"  target="_blank"><IMG height=135 src="../_include/products/ce2/ce2-s.jpg" width=150 border=0></A> 