	function SwipeIMG(blob,title,description,which,width,height)
{	partA = "<img width='" + width + "' height='" + height + "' src='" + blob + "' alt=''>"

	
	wrapperStart = "<table cellspacing='0' width='" + width + "'>" + "<tr><td width='" + width + "' align='left'>"
	wrapperEnd = "</td></tr></table>"
	
	newContent = wrapperStart + partA + wrapperEnd
	document.getElementById("SwipeIMGover" + which).innerHTML = newContent
}
