//openBrWindow
// example call : openBrWindow('www.tsn.ca','WindowName','toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=400,height=400')

function openBrWindow(URLLocation,WindowName,Features) {
  window.open(URLLocation,WindowName,Features);
}

function selected(CurrentRow)
{CurrentRow.runtimeStyle.backgroundColor='silver';}

function deselected(CurrentRow)
{CurrentRow.runtimeStyle.cssText = '';} 



