var here,title;

function showWindow(image,x,y) 
  { 
    image=here+image;
    z = x - -22;
    t = y - -30;
    content = "<html><head><title>"+title+"</title></head>"+
    "<body text=#000000 bgcolor=#FFCC00 link=#0000EE vlink=#551A8B alink=#FF0000>" +
    "<img src="+image+" width="+x+", height="+y+"></body></html>";
    pop = window.open("","","scrollbars=0,toolbar=0,width="+z+", height="+t+"");
    pop.document.open();
    pop.focus();
    pop.document.write(content);
    pop.document.close();
  }

function init(here1,title1)
{
  here=here1;
  title=title1;
}
