function displayImage( image, width, height, name )
{
if (Number(width) > self.window.innerWidth) {
Detail = window.open("", "_blank", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=" + width +",height=" + height );
} else {
Detail = window.open("", "_blank", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=" + width +",height=" + height );
}
Detail.document.open();
Detail.document.write("<HTML><HEAD><TITLE>" + name + "</TITLE></HEAD>");
Detail.document.write("<BODY topmargin=0 leftmargin=0 marginheight=0 marginwidth=0>");
Detail.document.write("<IMG SRC='" + image + "'>");
Detail.document.write("</BODY></HTML>");
Detail.document.close();
}
