function ImageWindow(image,res) {
  newWindow = open("","pic", res);
  newWindow.document.write('<html><head><title></title></head><body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"><img src="'+image+'"></body></html>');
}

