function show_otz(id, target)
{
	var req = new JsHttpRequest();

    req.onreadystatechange = function() {
        if (req.readyState == 4) {
            document.getElementById(target).innerHTML = req.responseJS.table;
        }
    }

    req.open(null, '/DESIGN/DOM/BLOCKS/ajax_cli.php', true);

    req.send( { cli_id: id } );

}

function hide_otz()
{
	$('.ot_popup').css( 'display','none' );
}

