
//<!--

function enlargePic(imgSrc, curPicBox)
{
	//swap the 2 images around
		
	var objSmallPicBox = document.getElementById(curPicBox);
	var objBigPicBox = document.getElementById("divPicBox");
	
	var curImgSrc = objBigPicBox.innerHTML.replace("width=430", "width=195").replace("width=\"430\"","width=195");
	var pos1 = curImgSrc.indexOf("src=\"");
	pos1=pos1+5;
	var pos2 = curImgSrc.indexOf("\"", pos1);
	var curSrc = curImgSrc.substr(pos1, pos2-pos1);
	
	objSmallPicBox.innerHTML = "<a href=\"javascript:enlargePic('" + curSrc + "','" + curPicBox + "');\">" + curImgSrc + "</a>";
	objBigPicBox.innerHTML = "<img src=\"" + imgSrc + "\" border=0 width=430>";
}
//-->




