function confirmarBorrar(postback)
{
	if(confirm('Are you sure you want to delete the item?'))
	{ 
		eval(postback);
	} 
}

// this is a fix for microsoft's bug in the datagrid control
function __dopostback(a,b)
{
	__doPostBack(a,b);
}

function doPuff(obj)
{
	if(document.getElementById("product_list_container") != null)
	{
		Effect.Pulsate(obj, {pulses:16, duration:10}); // Effect.Pulsate(document.getElementById(obj.id));
		Effect.Puff(document.getElementById("product_list_container"));
		/* document.getElementById(obj.id).backgroundColor = "#444"; */
	}
}
