var IE=(navigator.appName=='Microsoft Internet Explorer' && navigator.userAgent.indexOf("Opera")==-1?1:0);
function ById(id){return document.getElementById(id)}
function dictionary(){
if (click_block){
click_block=0;
return;
}
if (!IE){
t = document.getSelection();
opennewdictwin(t);
}
else {
t = document.selection.createRange();
if(document.selection.type == 'Text' && t.text != ''){
document.selection.empty();
opennewdictwin(t.text);
}}}

function get_mouse(e){
	nsx=e.pageX-10;
	nsy=e.pageY+5;
}
function t_i(id){
	var hlp=ById('Tp'+id);
	if (hlp){
	if (document.all)
	hlp.style.top=nsy+20;
	hlp.style.left=(nsx>670?nsx-470:400);
	hlp.style.visibility='visible';
}}
function m_over(url){
window.status=url;
return true;
}
function m_out(){
window.status = '';
}
function toggle(id){
	var img=ById('toggle_img_'+id);
	var td=ById('toggle_td_'+id).style;
	if (td.display=='none'){
		td.display='';
		img.src=img.src.replace('right','down');
		
	}
	else{
		td.display='none';
		img.src=img.src.replace('down','right');
	}
}