 function product(thumb){
   if(document.images) {
      document.getElementById('productM').src = thumb.src.replace(/S(?=\.)/,'M');
   }
 }

 function enlarge(image){
  var image = document.getElementById(image).src.replace(/M(?=\.)/,'L');
  var large = window.open('','large','width=746,height=585');
    with(large.document){
      writeln('<html><head><title>Deutsch Nine &#8211; Large Image</title></head>');
      writeln('<body ######="self.focus()" onblur="self.close()">');
      writeln('<div style="text-align:center;font-size:14px">');
      writeln('<img src="'+image+'"><br>');
      writeln('<a href="javascript:close()">Close Window</a>');
      writeln('</div></body></html>');
      close();
    }
 }