function confirm_del(item, redirect_url) {
	if(confirm('Are you sure you want to delete ' + item + '?')) {
		document.location.href = redirect_url;
	}
}





 function show_large_pic(elem_id, pic_url,pic_url_big, pad) {
var c;
//dis = "document.getElementById('" + elem_id + "').style.display = 'block'";
c = '<a href="#" onClick="PopupPic(\''+pic_url_big+'\')">';
c += '<img src="' + pic_url + '" border="0" style="margin-top:'+pad+'px;">';
c += '</a>';

document.getElementById(elem_id).style.display = '';
//document.getElementById(elem_id).display = '';
document.getElementById(elem_id).innerHTML = c;
//document.getElementById(elem_id).innerHTML = 'dasdsad';
}
