
function showPic(sPath)
{
	if (document.getElementById("Pic"))
	{
		document.getElementById("Pic").src = sPath.replace("thumbs", "enlarged").replace(".gif", ".jpg");
	}
	
	else
	{
		document.getElementById('iPic').style.display = "block";
		
		var sDiv = '';
		
		sDiv += '<div style="background:#f6f6f6; border:solid 5px #dad6d6; margin:0px auto 0px auto;">';
		sDiv += '  <div style="border:solid 1px #c6c6c6;">';
		sDiv += '    <table border="0" cellspacing="0" cellpadding="0" align="center" width="306">';
		sDiv += '      <tr height="25">';
		sDiv += '        <td width="200"><b style="font-size:13px; padding-left:5px; color:#2771c8;">Yeuell Gallery</b></td>';
		sDiv += '        <td align="right"><img src="nameplate/label.gif" width="13" height="13" vspace="5" hspace="5" alt="close" title="close" style="cursor:pointer;" onclick="document.getElementById(\'iPic\').style.display=\'none\';"></td>';
		sDiv += '      </tr>';
		sDiv += '      <tr>';
		sDiv += '        <td colspan="2" height="201" width="100%" align="center">';
		sDiv += '          <img src="' + sPath.replace("thumbs", "enlarged").replace(".gif", ".jpg") + '" width="296" height="195" alt="custom labels, decals, nameplates, UID, metal bar codes, panel fronts, dial faces, tags">';
		sDiv += '        </td>';
		sDiv += '      </tr>';		
		sDiv += '    </table>';
		sDiv += '  </div>';
		sDiv += '</div>';
		
		document.getElementById("iPic").innerHTML = sDiv;
	}
}