function deleteItem(itemid,getPage){
var vars='delete='+itemid
	$.post(getPage+'.php', vars, function(response) {
							   if(response=='Success')
							   $('#item-'+itemid).remove();
							   else if(response.match(/<head>/)!=null)
							   	document.location.href='/';
							   else
							   showAlert(response);
		});
}

