function showEnlargedView(sFile)
{
	var win = window.open("popUp.html?File=" + sFile, 'EnlargeView', "width=648, height=577");
	win.focus( );
}

// preload images
var Gallery = new Array( );

for (var i = 0; i < 22; i++)
{
	Gallery[i] = new Image( );
  	Gallery[i].src = ("gallery/thumbnails/gallery_" + (i + 1) + ".jpg");
}

document.write('<marquee style="width:140px; height:250px;" scrollamount="2" scrolldelay="20" direction="up" onmouseover="this.stop( ); return true;" onmouseout="this.start( ); return true;">');

for (var j = 1; j<= 22; j ++)
{
	document.write('  <a href="gallery/thumbnails/gallery_'+j+'.jpg" target="_blank"><img src="gallery/thumbnails/gallery_' + j + '.jpg" width="110" height="110" alt="AP Extrusion Products" title="AP Extrusion Products" border="0"></a>');
	document.write('  <br><br>');
}

document.write('</marquee>');
