function confirm_del(item, redirect_url) {
	if(confirm('Are you sure you want to delete ' + item + '?')) {
		document.location.href = redirect_url;
	}
}

 function PopupPic(sPicURL) { 
     window.open( "poza_mare.php?"+sPicURL, "", "resizable=1,HEIGHT=200,WIDTH=200"); 
   } 



 function show_large_pic(elem_id, pic_url,pic_url_big) {
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">';
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';
}