function frmreloadtoimg(imgname)
{
	for(a=0;a<document.images.length;a++)
	{
		if (document.images[a].src==document.images[imgname].src)
			document.images[a].src=document.images[a].src;
	}
}
for(a=0;a<document.images.length;a++)
{
	if (document.images[a].getAttribute('nocache')!=null)
	{
		document.write('<iframe id="frmreload'+a+'" width="0" height="0" src="'+document.images[a].src+'" onLoad="frmreloadtoimg(\''+a+'\')" style="visibility:hidden" ></iframe>')
		setTimeout("document.getElementById('frmreload'+"+a+").contentWindow.document.location.reload()",100)
	}
}