
function CreateImageWnd(windowTitle,imageUrl,x,y) {
  var winl = (screen.width - x) / 2;
  var wint = (screen.height - y) / 2;
  newWin=window.open("", "imageUrl",'toolbar=no,width='+x+',height='+y+',location=no,status=no,menubar=no,framewidth=0,frameheight=0,marginwidth=0,marginheight=0,border=0,scrollbars=no,top='+wint+',left='+winl);
  newWin.document.write('<HTML><HEAD><TITLE>' + windowTitle + '</TITLE></HEAD>');	
  newWin.document.write('<BODY BGCOLOR=#ffffff LINK=#808080 VLINK=#808080 ALINK=#808080 topmargin=10 leftmargin=0 rightmargin=0 bottommargin=0 style="FONT-SIZE: 10px; TEXT-ALIGN: justify; COLOR: #000000; FONT-FAMILY: TAHOMA, ARIAL, HELVETICA">');
  newWin.document.write('<center><a href=# OnClick=window.close()>');
  newWin.document.write('<img src="http://www.cactusfactory.com/' + imageUrl + '" width="240" height="320" border=0>');
  newWin.document.write('<br><br><font face=verdana,arial size=1>Close this window</a>');

  newWin.document.close();
  newWin.focus();
}
