//i) js functions

function removePicture(id, node)
{
	if (confirm("ARE YOU SURE ABOUT DELETING THE PICTURE?"))
	{
		
		url = "ajax_actions.php?action_removeUserPicture=" + id;
		new Ajax( url , {method: 'get',update:$('msgbox')}).request();
		node.getParent().addClass("nodisplay");
	}
}
