function show(foto)
{
    if (foto != "")
    {
        wnd=window.open("/prog/pl_editor/img_popup.php?img_url="+encodeURIComponent(foto+"|"), "binn_popup_image", "width=200,height=200,scrollbars=no,toolbar=no,location=no,status=no,resizable=no,left=0,top=0");
        wnd.focus();
    }
    else
        void(0);
}

function open_desc(arg1, arg2){
	var span_list = document.getElementsByTagName('span');
	for ( i = 1; i < span_list.length; i++ ){
		if(span_list[i].parentNode.className == 'span_cont'){
		span_list[i].className = '';
		}
	}
	document.getElementById(arg1).className = 'it_ac';
	
	
	var div_list = document.getElementsByTagName('div');
	for ( i = 1; i < div_list.length; i++ ){
		if(div_list[i].parentNode.className == 'desc_cont'){
		div_list[i].style.display = 'none';
		}
	}
	document.getElementById(arg2).style.display = 'block';
}