function WndShow(src,text){
var wnd = document.getElementById('wnd');
var title = document.getElementById('wnd_title');
var image = document.getElementById('wnd_image');
if(wnd && title && image){
	wnd.style.left=(document.body.clientWidth/2)-400;+"px";
	wnd.style.top= (document.body.scrollTop+50)+"px"; 
	image.src='/images/800/'+src; title.innerText = text; wnd.style.display = 'block';
}
}
function WndClose(src,title){
var wnd = document.getElementById('wnd');
var title = document.getElementById('wnd_title');
var image = document.getElementById('wnd_image');
if(wnd && title && image){wnd.style.display = 'none'; image.src='images/null.gif'; title.innerText = ''; }
}
