function rowSelect(row) 
{
  var e;
  if(getBrowserType() == "IE")
  {
    e = document.all("row" + row);
    e.style.cursor = "hand";
  }
  else
  {
    e = document.getElementById("row" + row);
    e.style.cursor = "pointer";
  }

  e.style.backgroundColor = "#B8CCFF";  
}

function rowUnselect(row) 
{
  var e;
  if(getBrowserType() == "IE")
  {
    e = document.all("row" + row);
  }
  else
  {
    e = document.getElementById("row" + row);
  }

  e.style.cursor = "normal"; 

  if((row%2) != 0) 
    e.style.backgroundColor = "#E6E6E6";
  else 
    e.style.backgroundColor = "#CFCFCF";

}

function getBrowserType()
{
  if(navigator.appName.indexOf('Internet Explorer') != -1)
    return "IE";
  else
    return "NN";
}


function rowClick(url) 
{
	window.location = url;
}

function rowClickOpenAndClose(url, target_frame) 
{
	window.open(url, target_frame)
	window.close();
}
