var infoWindow;
function showInfo(sender, wWidth, wHeight)
{  
  infoWindow = window.open(sender.href, 'display', 'width=' + wWidth + ',height=' + wHeight + ',left=50,top=50, resizable, scrollbars');
  infoWindow.focus();
  return false;
}

