function RowSelected(row){
		
		alert(row.KeyValues["EntryID"]);
	var url = "Modules/M8AppMon/EventLogs/Grids/LogEntry.aspx?id=" + row.KeyValues["EntryID"]
  	
  	var oWindow = window.radopen(url, null);
    oWindow.SetSize(607, 450);
    oWindow.SetTitle('Log Entry ' + row.KeyValues["EntryID"]);
    oWindow.Center();	
}
