/*	this function will force an image of the 'imageSourcePath' parameter into the dynloadareea division */
function modifyimage(imageSourcePath)
{
	if (document.getElementById)
	{
		var position = imageSourcePath.lastIndexOf('/')+1
		var path2 = imageSourcePath.substring(position)
		path2 = "full/"+path2
		//alert(path2)
		var imgobj=document.getElementById('dynloadarea')
		//if (imgobj.filters && window.createPopup)
		//{
			//imgobj.style.filter=filterstring
			//imgobj.filters[0].Apply()
		//}
		imgobj.innerHTML='<img src="'+path2+'" border="0">'
		//if (imgobj.filters && window.createPopup)
			//imgobj.filters[0].Play()
		return false
	}
}