function loadImage(id,src,title,alt,width)
	{
	document.getElementById("modImage").src=src;	
	document.getElementById("modImage").alt=alt;	
	document.getElementById("modImage").title=title;
	document.getElementById("modImage").onclick=new Function("return showImage('"+src+"','"+title+"',"+width+")");
	var tmp_node=document.getElementById("rightContainer").childNodes[3];
	for(var i=0;i<tmp_node.childNodes.length;i++)
		{
		if(tmp_node.childNodes[i].className)
			{
			tmp_node.childNodes[i].className="modImageLink";	
			}
		}
	document.getElementById(id).className="modImageLinkActive";	
	document.getElementById("rightContainer").childNodes[2].innerHTML=title;
	return false;
	}
	
function showImage(src,title,width)
	{
	if(document.getElementById('modImgBig'))
		{
		document.getElementsByTagName('body')[0].removeChild(document.getElementById('modImgBig'));
		}
	if(document.all && !window.opera)
		{
		var topPos=document.documentElement.scrollTop;
		}
	else
		{
		var topPos=window.pageYOffset;
		}
	
	var img=document.createElement("img");
	img.id="modImgBig";
	img.src=src.replace(/_thumb/,"");
	img.title=title+" | zum Schließen klicken";
	img.style.border="10px solid #ff9900";
	img.style.backgroundColor="#ffffff";
	//img.style.display="none";
	//img.onload=new Function("alert('ja');document.getElementById('modImgBig').style.display=''");
	img.style.position="absolute";
	img.style.left=((900-width)/2)+"px";
	img.style.top=topPos+30+"px";
	img.onclick=new Function("document.getElementsByTagName('body')[0].removeChild(document.getElementById('modImgBig'))");
	document.getElementsByTagName("body")[0].appendChild(img);
	return false;
	}
	
function insertFlash(entry_id)
	{
	str='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="600" height="166">';
    str+='<param name="movie" value="shared/flash/topImage.swf" />';
    str+='<param name="quality" value="high" />';
	str+='<param name="wmode" value="transparent" />';
    str+='<embed src="shared/flash/topImage.swf" quality="high" wmode="transparent" luginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="600" height="166"></embed>';
	str+='</object>';
	document.getElementById('topImage').innerHTML=str;
	}
	




