function delete_event (strpk_events)
{
	// Deleting information
	where_to = confirm('Are you sure you want to delete this Event?     ');
		if (where_to== true)
		{
			MyURL = 'eventsDelete.asp?action=delete1&delid='+strpk_events
			window.open(MyURL,"Del","width=20,height=20");
			// location.href='eventsDelete1.asp?action=delete1&Prop='+strPropertyID+'&ProjectID='+strProjectID+'&ProjSub='+strProjSubject+'&URL='+strURL+'&delid='+strpk_events;			
			window.location.reload();
		}
}
