/*
       function show_image(name)
       {
         parent.document.writeln('<HTML><BODY>');
         parent.document.writeln('<A href="javascript: history.back()">');
         parent.document.writeln('<IMG src="../return.jpg" border="0" align="left">');
         parent.document.writeln('</A>');
         parent.document.writeln('<IMG src="' + name.href + '">');
         parent.document.writeln('</BODY></HTML>');
         parent.document.close();
         return false; // JIC?
       }
*/

function show_image(name)
{

  tempshow = window.open("", "tempshow", "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,height=520");
//+",width="+document.body.clientWidth+",height=100%");

  doc = tempshow.document;
  doc.writeln('<HTML><HEAD><TITLE>Gallery</TITLE></HEAD><BODY>');
  doc.writeln('<A href="javascript:self.close()" onClick="self.close()">');
  doc.writeln('<IMG src="http://artistsonline.co.il/return.jpg" border="0" align="left" alt="Return" width="32"></A>');
  doc.writeln('<IMG src="' + name.href + '" alt="Loading image - Please Wait" border="0">');
  doc.writeln('</BODY></HTML>'); 
  doc.close();

  return false;
}

