function askDel()
{
	return window.confirm('Вы действительно хотите удалить?');
}


function askClose()
{
	return window.confirm('Вы действительно хотите зыкрыть?');
}


function redirectTo(url, timeout)
{
	window.setTimeout('window.location.href = "' + url + '"', timeout * 1000);
}
	

function openPopupWindow(url, w, h)
{
	window.open(url, 'popup', 'width=' + parseInt(w) + ',height=' + parseInt(h) + ',resizable=0,status=0,scrollbars=1,menubar=1');
	
	return false;
} 

function openCloseCut(cut_id)
{
	var btn_open_cut = document.getElementById('cutopen' + cut_id);
	var btn_close_cut = document.getElementById('cutclose' + cut_id);
	var cut = document.getElementById('cutid' + cut_id);
	
	if(!btn_open_cut || !btn_close_cut || !cut)
		return;
	
	if(cut.style.display == 'none') {
		cut.style.display = 'block';
		btn_open_cut.style.display = 'none';
		btn_close_cut.style.display = 'block';
	}
	else {
		cut.style.display = 'none';
		btn_open_cut.style.display = 'block';
		btn_close_cut.style.display = 'none';
	}
}
