function DeleteItem(DeleteID, DeleteLink)
{ 	
	if (confirm('Are you sure you wish to delete this?')) 
	{
		window.location= DeleteLink + '?DeleteID=' + DeleteID
	}
}

function OpenResource(page, pagetitle)
{
popupWindow = window.open(page,pagetitle,"scrollbars=yes,resizable=yes,menubar=no,width=550,height=350");
popupWindow.focus();
}
