function onLoadPrintWindow()
{
  var aList = document.all.tags("A");
  if (aList != null)
  {
    for (i = 0; i < aList.length; i++)
      aList[i].target="mainWidnow";
  }
  window.focus();
  window.print();

  return true;
}


