  //function DetectImageSize(picURL,picTitle, width, height){
  //   newWindow=window.open(picURL,'_blank','toolbar=no, left=200,top=100,scrollbars=no, width='+ width + ',height='+ height)
  //   newWindow.document.write('<html><head><title>'+picTitle+'<\/title><\/head><body background="'+picURL+'"><\/body><\/html>')
  //    newWindow.focus()
  // } 

 function openWindow(picURL, width, height){
   newWindow=window.open(picURL,'_blank','toolbar=no, scrollbars=no, left=30,top=100, width='+ width + ',height='+ height)
   newWindow.focus()
 } 

 function popupWindow(picURL, width, height){
   newWindow=window.open(picURL,'_blank','toolbar=no, scrollbars=yes, left=30,top=100, width='+ width + ',height='+ height)
   newWindow.focus()
 }