//点击放大图片脚本（自适应、强焦点版）1.001
var imgObj;
function checkimg(theURL){
	if (typeof(imgObj) == "object"){
		if(imgObj.width!=0 &&imgObj.height!=0){
			window.showModalDialog("images/pop.htm", theURL, "dialogWidth:"+(imgObj.width+20)+"px; dialogHeight:"+(imgObj.height+20)+"px; status:no; directories:yes;scroll:no;Resizable=no; help:no;"  );
		}
		else{
			setTimeout("checkimg('" + theURL + "')", 50);
		}
	}
}
function fpop(theURL) { //v2.0
	imgObj = new Image();
	imgObj.src = theURL;
	checkimg(theURL);
	  // 设置图像源
	return false;
}
var o=window.onload;
if(typeof(o)=="function")
    o();
window.onload = function(){
	var Links = document.getElementById("imgTable").getElementsByTagName("a");
    if(Links.length==0)
        return;
    for(var i=0;i<Links.length;i++){
		Links[i].onclick  = function(){
			fpop(this.href);
			return false;
		}
	}
}