
var scroll = 0;

function windowOpener(url,x,y,index,scroll)
{

  back = "white";
  back = "0";
  back = "0";
  back = "0";
  back = "0";
  w = "width=" + x;
  h = "height=" + y;
  if (scroll == 'yes') {
    z = "toolbar=no,scrollbars=yes," + w + "," + h;
  } else {
    z = "toolbar=no,scrollbars=no," + w + "," + h;
  }
  imgWindow=window.open('',index,z);

  imgWindow.document.open("text/html","replace");
  imgWindow.document.write("<html><head></head><body bgcolor=\"" + back + "\" leftmargin=\"" + back + "\" topmargin=\"" + back + "\" marginwidth=\"" + back + "\" marginheight=\"" + back + "\"><div align=\"center\"><img src=\"" + url + "\"></div></body></html>");
  imgWindow.document.close();

  }

