var imgArray;
var descArray;

function openPopup(imgIdx){
 var img=imgArray[imgIdx];
 w=window.open('','name','height=225,width=300, toolbar=no,directories=no,status=no,menubar=no, scrollbars=no,resizable=no');
 w.document.write('<html><head><title>Popup</title></head><body style="overflow:hidden" bgcolor="#ffffff">');
 w.document.write('<img src="/gallery/'+img+'.jpg"><br><p align="right"><a href="#" onclick="self.close();return false;">Close Window</a></p></body></html>');
return false;
} 

function showDesc(descIdx){
 if(descArray[descIdx])document.all('imgdesc').innerHTML=descArray[descIdx];
}
function showImage(imgIdx){
 var img=imgArray[imgIdx];
 document.all('big').src='gallery/'+img+'.jpg';
 showDesc(imgIdx);
}
function showThumb(imgList,width,height,pop){
 imgArray=imgList.split(',');
 funcName="showImage";if(pop=="pop")funcName="openPopup";
 document.write('<div class="thumbs">');
 for(i=0;i < imgArray.length;i++){
  if(imgArray[i]!=''){
   document.write('<a href="javascript:'+funcName+'('+i+');"><img src="gallery/thumbs/'+imgArray[i]+'.jpg" style="margin-bottom:5px;"width="'+width+'" height="'+height+'" title="Click to enlarge"></a>');
  }else{
//   document.write('<a href="'+defaultUrl+'"><img src="'+defaultImg+'" width="'+width+'" height="'+height+'"></a>');
  }
 }
 document.write('</div>');
}

function setDescriptions(descList){
 descArray=descList;
 showDesc(0);
}
