var imageDir="images/";
var debugStr= 'debug';

// Left Menu link
function showImage(idComp,fileName,showIndex)
{
	imgComp=document.getElementById(idComp);
	if (imgComp!=null)
	{
		imgComp.src=imageDir+showIndex+fileName;
		//document.getElementById(debugStr).innerHTML=imgComp.src;
		
	}
}
