// open large image window
function OpenLarge(large) 
{
  var w = largeWidth[current_slide];
  var h = largeHeight[current_slide];

  large_image=window.open("","large","width="+w+",height="+h+",scrollbars=1,resizable=1,top=20,left=20");
  large_image.document.write('<head><title>'+majorCaption[current_slide -1]+'</title></head>');
  large_image.document.write('<body onblur="self.focus()"; bgcolor="#000000" leftmargin=0 topmargin=0 marginheight=0 marginwidth=0>');
  large_image.document.write('<img src='+large+' border=0 galleryimg=no onmousedown=window.close() >');
  large_image.document.write('</body>');
  large_image.document.close();
}
