function WriteThumb(img,url,alt,blank,headline)
{
	if (blank==null)
		blank=false;
	if (headline==null)
		headline=false;

	var str="<table class='thumbnail'>";
	str+="<tr><td>";
	str+="<a href='";
	str+=url;
	if (blank)
		str+="' target='_blank'>";
	else
		str+="'>";
	str+="<img src='";
	str+=img;
	str+="' alt='";
	str+=alt;
	str+="' ";
	if (headline){
		if (thumbHWidth>0){
			str+=" width='";
			str+=thumbHWidth;
			str+="' ";
		}
		if (thumbHHeight>0){
			str+=" height='";
			str+=thumbHHeight;
			str+="' ";
		}
	}else{
		if (thumbWidth>0){
			str+=" width='";
			str+=thumbWidth;
			str+="' ";
		}
		if (thumbHeight>0){
			str+=" height='";
			str+=thumbHeight;
			str+="' ";
		}
	}
	str+="></a></td></tr></table>";
	document.write(str);

}


<!--±δΙ« 
var globopObject;var opIndex=0;
var cleared=true;var direction=10;
function dynOpacity(opObject,stop)
{if (stop) {clearInterval(window.tm);cleared=true;
opIndex=10;return;}
globopObject=opObject;if (opIndex>110) direction=-4;if (opIndex<0) direction=4;
opIndex+=direction;globopObject.style.filter='alpha(opacity:' + opIndex + ')';
if (cleared)
{window.tm=setInterval("dynOpacity(globopObject,false);",1);cleared=false;}}
function handleevent()
{if (event.type=="mouseover")if(event.srcElement.tagName=="IMG")
if (event.srcElement.parentElement.tagName=="A")
{dynOpacity(event.srcElement,false);}
if (event.type=="mouseout")if(event.srcElement.tagName=="IMG") 
{event.srcElement.style.filter="";dynOpacity(event.srcElement,true); }}
document.onmouseover=handleevent;
document.onmouseout=handleevent;
//±δΙ« --> 
