function openWindow(url)
{
 myWin = window.open(url, 'OriginalSizeImage', 'toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width=520,height=400,left=20,top=20');
}

function fixup()
{
  if (navigator.userAgent.indexOf('MSIE 6.0') != -1)
  {
    el = document.getElementById('bottom_line');
    if (el != null)
      el.style.position = 'absolute';
  }
}
