
function showPic(url, width, height)
{
	var win		= window.open('','_blank','toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, copyhistory=yes, width='+(width+20)+', height='+(height));
	win.document.write("<html><head></head><body onblur='window.close();' onload='window.focus();' style='margin: 0px; text-align: center;'><img src='"+url+"' alt='gallery picure' /></body></html>");
	win.document.close();
}

function deleteItem(id)
{
	var answer	= confirm('Are you sure you want to delete this item?');
	if( answer )
	{
		var fld		= document.getElementById('id');
		fld.value	= id;
		fld.form.submit();
	}
}