	tbs = document.getElementsByTagName("table");
	for (i=0; i < tbs.length;  i++) {
		if (tbs[i].className == "imgTable") {
			tb = tbs[i];	
			break;
		}
	}


	if ( typeof(tb) == "object" ) {
	for (i=0;i<tb.rows.length;i++){
		for (j = 0; j < tb.rows[i].cells.length; j++) {
			c = tb.rows[i].cells[j];
			if (c.getElementsByTagName("div").length == 0) {
				a = c.getElementsByTagName("a");
				if (a.length > 1) {
					a0 = a[0];
					a1 = a[1];
					if (a1.className == "") a1.className = "name";

					div1  =document.createElement("div");
					div1.className = "Photo100";
					div1.appendChild(a[0]);
					div2 =document.createElement("div"); 

					div2.className="imgborder";
					div2.appendChild(div1);

					div3 =document.createElement("div"); 
					div3.appendChild(div2);						
					div3.appendChild(a1);
					
					c.innerHTML = div3.innerHTML;


	

				} //if a
			} //if c
		} //for j

	} //for i
	} //if tbs