/******************************************************************************
SFI-Script

******************************************************************************/
function DownloadImage_showlayer (smodID, surl) 
{
	sdif = 'div_' + smodID;
	simg = 'img_'  + smodID;
	
	elem_dif = document.getElementById(sdif);
			if (elem_dif) 
			{
				elem_dif.style.display='block';
	}
	
	elem_img = document.getElementById(simg);
	if (elem_img) 
	{
		elem_img.src=surl;
	}
}
function DownloadImage_closelayer (smodID) 
{
	sdif = smodID;
	elem = document.getElementById(sdif);
	if (elem) 
	{
		elem.style.display='none';
	}
}
