// JavaScript Document

  var mywindow;

/*this array has the width and height of the images*/

  var dims=new Array();
      dims[0]='300,390';
	  dims[1]='300,390';
      dims[2]='300,390';
      dims[3]='300,390';
      dims[4]='300,390';
      dims[5]='300,390';
      dims[6]='300,390';
      dims[7]='300,390';
	  dims[8]='300,390';
      dims[9]='300,390';
	  dims[10]='300,390';
      dims[11]='300,390';
      dims[12]='300,390';
      dims[13]='300,390';
      dims[14]='300,390';
      dims[15]='300,390';
      dims[16]='300,390';
	  dims[17]='300,390';
	  dims[18]='300,390';
 window.onload=function() {
   lnk=document.getElementById('gallery').getElementsByTagName('a');
for(c=0;c<lnk.length;c++) {
   lnk[c].id='a'+c;
   lnk[c].onclick=function() {
   n=this.id.split('a')[1];
   w=dims[n].split(',')[0];
   h=dims[n].split(',')[1];
 
   url='page.html?'+this.href;
   l=(screen.width-w)/2;
   t=(screen.height-h)/2;

   features='width='+w+',height='+h+',left='+l+',top='+t;

if(mywindow) {
   mywindow.close();
 }
   mywindow=window.open(url,'',features);  
   mywindow.focus();
   return false;
   }
  }
 }
