function cl_min(ev) {
	//if (window.event) {ev = window.event}
	var hi = document.getElementById("hi"+this.iid);
	var img = hi.firstChild.firstChild;
	var o;
	img.src = this.thsrc;
	hi.ofsetWidth = "200px";
	//img.width = this.thw;
	img.height = this.thh;
	//hi.style.left = "10px";//this.offsetLeft; //(objPos(this).x +10) + "px";//leftPosition(this) + "px";
	//hi.style.top = "-20px"; //this.offsetTop; //(objPos(this).y + 10) + "px";//(topPosition(this) + 35) + "px";
	hi.style.display = "block";
	if (this.pom<4) {
		o = getE("SORT2_0"); if (o) o.style.visibility = "hidden";
		o = getE("SORT2_1"); if (o) o.style.visibility = "hidden";
		o = getE("pnSORT2"); if (o) o.style.visibility = "hidden";
	}
}
function cl_mout(ev) {
	//if (window.event) {ev = window.event}
	var hi = document.getElementById("hi"+this.iid);
	var o;
	hi.style.display = "none";
	if (this.pom<4) {
		o = getE("SORT2_0"); if (o) o.style.visibility = "visible";
		o = getE("SORT2_1"); if (o) o.style.visibility = "visible";
		o = getE("pnSORT2"); if (o) o.style.visibility = "visible";
	}
}
function lf(n,ev,f,w,h,iid,pom){
	n.thsrc = f;
	n.thw = w;
	n.thh = h;
	n.iid = iid;
	n.pom = pom;
	n.onmouseover = cl_min;
	n.onmouseout = cl_mout;
	n.onmouseover(ev);
}