function viewImage2(src){
    var i = new Image(); i.src = src;
    var pop_win = window.open(
                      "",
                      "_blank",
                      "width=375,height=500,scrollbars=no,resizable=no"
                  );
    pop_win.window.document.open();
    pop_win.window.document.write(
    '<?xml version="1.0" encoding="utf-8"?>'
    +'<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">'
    +'<html>'
    +'<head><title>'+i.alt+'</title></head>'
    +'<body  oncontextmenu="return false;" style="margin:0;padding:0;border:0;">'
    +'<img src="'+i.src+'" width="100%" alt="" />'
    +'</body>'
    +'</html>'
    );
    pop_win.window.document.close();
}
