var myWinR;
function openTell(URL, w, h,wtitle , WName)
{
		mtw = (screen.width-w)/2;
		mth = (screen.availHeight-h)/2;
    	myWinR = window.open('', WName, "width="+w+",height="+h+",top="+mth+",left="+mtw+",status=no,toolbar=no,scrollbars=no,resizable=yes,menubar=no");
		myWinR.focus();
	  	myWinR.document.writeln('<hrml><head><title>'+wtitle+'</title></head><body style="margin: 0px 0px 0px 0px"><a href="javascript:window.close();"><img src='+URL+' border=0 width='+w+' height='+h+' alt=Закрыть></a></body></html>');
}

var myWinF;
function openFlash(URL, w, h,wtitle , WName)
{
		mtw = (screen.width-w)/2;
		mth = (screen.availHeight-h)/2;
    	myWinF = window.open('', WName, "width="+w+",height="+h+",top="+mth+",left="+mtw+",status=no,toolbar=no,scrollbars=no,resizable=yes,menubar=no");
		myWinF.focus();
	  	myWinF.document.writeln('<hrml><head><title>'+wtitle+'</title></head><body style="margin: 0px 0px 0px 0px"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" id="flash" width="100%" height="100%" align="middle"><param name="allowScriptAccess" value="sameDomain" /><param name="movie" value='+URL+' /><param name="quality" value="high" /><param name="bgcolor" value="#ffffff" /><embed src='+URL+' quality="high" bgcolor="#ffffff" width="100%" height="100%" swLiveConnect=true id="flash" name="flash" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object></body></html>');
}