/**
 * @author Andy
 */
function makeThumb(src,width,pWidth,serverPath,relativePath)
{
	var href = serverPath + "/" + src;
	var srcD = serverPath + "/includes/phpThumb/phpThumb.php?w=" + width + "&src=" + relativePath + "/" + src;
	var displayHtml  = "<a href=\"" + href + "\" class=\"thickbox\"><img src=\"" + srcD + "\"/></a>";
	return displayHtml;
}